Mercurial > ~dholland > hg > tradcpp > index.cgi
annotate files.h @ 6:0601b6e8e53d
checkpoint - can find files
author | David A. Holland |
---|---|
date | Sun, 19 Dec 2010 18:55:51 -0500 |
parents | ee9a66b87c70 |
children | b8167949474a |
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 | 3 struct place *place_gettemporary(void); |
4 void place_puttemporary(struct place *p); | |
5 void place_setnowhere(struct place *p); | |
6 void place_setbuiltin(struct place *p, unsigned num); | |
7 void place_setcommandline(struct place *p, unsigned column); | |
8 | |
9 void files_init(void); | |
10 void files_cleanup(void); | |
11 | |
4
ee9a66b87c70
Initial version of toplevel and options handling.
David A. Holland
parents:
diff
changeset
|
12 void files_addquotepath(const char *dir, bool issystem); |
ee9a66b87c70
Initial version of toplevel and options handling.
David A. Holland
parents:
diff
changeset
|
13 void files_addbracketpath(const char *dir, bool issystem); |
ee9a66b87c70
Initial version of toplevel and options handling.
David A. Holland
parents:
diff
changeset
|
14 |
6 | 15 void file_readquote(struct place *, const char *name); |
16 void file_readbracket(struct place *, const char *name); | |
17 void file_readabsolute(struct place *, const char *name); |