Annotation-System/hmmlib
Alex Baines 21814d1e48 add publication_date and output to hmml metadata 2019-02-05 20:46:52 +00:00
..
.gitignore add offsets to markers + references, cleanup 2017-02-27 22:55:00 +00:00
example.c hmml parser C library 2017-02-27 21:54:02 +00:00
hmmlib.h add publication_date and output to hmml metadata 2019-02-05 20:46:52 +00:00
hmmlib.l add publication_date and output to hmml metadata 2019-02-05 20:46:52 +00:00
makefile improve hmmlib makefile when lex missing even more 2018-08-09 20:18:02 +01:00
readme.txt add offsets to markers + references, cleanup 2017-02-27 22:55:00 +00:00
stb_sb.h hmmlib: multiple annotators/co-hosts/guests support 2017-06-20 20:54:26 +01:00

readme.txt

This is a C hmml parser library thing made with flex.
It has just 3 functions, look at hmmlib.h for the API.

To build it, run make, and it'll spit out hmml.a that you just need to include
on the command line when you build stuff. e.g.:

clang myfile.c hmml.a -o mything

(your .c file also needs to #include hmmlib.h)

-- insofaras