Annotation-System/hmmlib
Alex Baines c31b486cfa Add optional parameter to HMML_Markers + fix stuff*
* make sure quoted attrs are unescaped properly
2017-03-18 17:35:42 +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 optional parameter to HMML_Markers + fix stuff* 2017-03-18 17:35:42 +00:00
hmmlib.l Add optional parameter to HMML_Markers + fix stuff* 2017-03-18 17:35:42 +00:00
makefile hmml parser C library 2017-02-27 21:54:02 +00:00
readme.txt add offsets to markers + references, cleanup 2017-02-27 22:55:00 +00:00
stb_sb.h hmml parser C library 2017-02-27 21:54:02 +00: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