annotate files.h @ 19:f9792a9ec704

macro expansion.
author David A. Holland
date Mon, 20 Dec 2010 03:55:19 -0500
parents 97243badae69
children 76c114899f63
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
ee9a66b87c70 Initial version of toplevel and options handling.
David A. Holland
parents:
diff changeset
1 struct place;
ee9a66b87c70 Initial version of toplevel and options handling.
David A. Holland
parents:
diff changeset
2
6
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
3 void files_init(void);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
4 void files_cleanup(void);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
5
4
ee9a66b87c70 Initial version of toplevel and options handling.
David A. Holland
parents:
diff changeset
6 void files_addquotepath(const char *dir, bool issystem);
ee9a66b87c70 Initial version of toplevel and options handling.
David A. Holland
parents:
diff changeset
7 void files_addbracketpath(const char *dir, bool issystem);
ee9a66b87c70 Initial version of toplevel and options handling.
David A. Holland
parents:
diff changeset
8
6
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
9 void file_readquote(struct place *, const char *name);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
10 void file_readbracket(struct place *, const char *name);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
11 void file_readabsolute(struct place *, const char *name);