|
пре 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);
}