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