annotate directive.h @ 25:18681e5ae6e4

fix some more bugs
author David A. Holland
date Mon, 20 Dec 2010 04:38:43 -0500
parents f6177d3ed5c2
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