|
3 个月前 | |
---|---|---|
.gitignore | 1年前 | |
LICENSE | 1年前 | |
Makefile | 1年前 | |
README.md | 1年前 | |
biblec.c | 3 个月前 | |
biblec.h | 3 个月前 | |
compiler.js | 3 个月前 | |
test.c | 3 个月前 |
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);
}