|
pirms 5 mēnešiem | |
---|---|---|
.gitignore | pirms 1 gada | |
LICENSE | pirms 1 gada | |
Makefile | pirms 1 gada | |
README.md | pirms 1 gada | |
biblec.c | pirms 5 mēnešiem | |
biblec.h | pirms 5 mēnešiem | |
compiler.js | pirms 5 mēnešiem | |
test.c | pirms 5 mēnešiem |
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);
}