annotate files.h @ 8:97243badae69

split place stuff to its own file
author David A. Holland
date Sun, 19 Dec 2010 19:15:55 -0500
parents b8167949474a
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);