|
5 місяці тому | |
---|---|---|
.gitignore | 1 рік тому | |
LICENSE | 1 рік тому | |
Makefile | 1 рік тому | |
README.md | 1 рік тому | |
biblec.c | 5 місяці тому | |
biblec.h | 5 місяці тому | |
compiler.js | 5 місяці тому | |
test.c | 5 місяці тому |
A minimal Bible format in C.
See Makefile
See test.c for a full example.
struct Biblec_reader reader;
int tryReader = biblec_new(
&reader,
&myTranslation,
"John",
3,
16,
20
);
while (biblec_next(reader)) {
puts(reader.result);
}