make-index/src/Parser.h

15 lines
409 B
C
Raw Permalink Normal View History

2017-03-26 04:47:35 -04:00
/** See \see{Parser}. */
2016-09-11 02:40:29 -04:00
struct Parser;
2017-03-26 04:47:35 -04:00
/** Dependancy on {Files}. */
2016-09-11 02:40:29 -04:00
struct Files;
/** All {ParserWidget}s are in {Widget.c}. */
2017-03-26 20:08:32 -04:00
typedef int (*ParserWidget)(struct Files *const files, FILE *const fp);
2017-03-26 04:47:35 -04:00
2017-03-26 20:08:32 -04:00
struct Parser *Parser(char *const str);
2017-03-26 04:47:35 -04:00
void Parser_(struct Parser **const p_ptr);
2016-09-11 02:40:29 -04:00
void ParserRewind(struct Parser *p);
2017-03-26 20:08:32 -04:00
int ParserParse(struct Parser *p, struct Files *const f, int invisible,
2017-03-26 04:47:35 -04:00
FILE *fp);