annotate directive.h @ 15:f6177d3ed5c2

handle directives
author David A. Holland
date Sun, 19 Dec 2010 21:42:01 -0500
parents
children 76c114899f63
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15
f6177d3ed5c2 handle directives
David A. Holland
parents:
diff changeset
1 #include <stddef.h>
f6177d3ed5c2 handle directives
David A. Holland
parents:
diff changeset
2
f6177d3ed5c2 handle directives
David A. Holland
parents:
diff changeset
3 struct place;
f6177d3ed5c2 handle directives
David A. Holland
parents:
diff changeset
4
f6177d3ed5c2 handle directives
David A. Holland
parents:
diff changeset
5 void directive_init(void);
f6177d3ed5c2 handle directives
David A. Holland
parents:
diff changeset
6 void directive_cleanup(void);
f6177d3ed5c2 handle directives
David A. Holland
parents:
diff changeset
7
f6177d3ed5c2 handle directives
David A. Holland
parents:
diff changeset
8 void directive_gotline(struct place *p, char *line, size_t len);
f6177d3ed5c2 handle directives
David A. Holland
parents:
diff changeset
9 void directive_goteof(struct place *p);
f6177d3ed5c2 handle directives
David A. Holland
parents:
diff changeset
10