aboutsummaryrefslogtreecommitdiff
path: root/include/stem.h
AgeCommit message (Collapse)Author
2024-05-02Don't check parser_t.c against EOFTomasz Kramkowski
parser_t.c is a char which may be unsigned on some platforms and therefore incapable of holding EOF. This field is only ever set from parser_t.source which is a char array, which only ever originates from {main,strquote,include} -> parser_pp -> {init_parser,parser_reset} which all assign it from char arrays. This means it should never be EOF, so the check can be dropped. Also update the documentation so it matches.
2024-05-02Makefile: Add support for generating compile_flags.txtTomasz Kramkowski
This helps tools like clangd understand where the header files are such that they can be used to navigate the codebase quickly and easily.
2024-01-22add ungluePreston Pan
2024-01-22fix curryPreston Pan
2024-01-20add more detailed error messages; fix a couple bugsPreston Pan
2024-01-10add comments in both stem and also in my c codePreston Pan
2024-01-09add sleep; fix bugsPreston Pan
2024-01-09reorganize directory structurePreston Pan