Mercurial > ~dholland > hg > tradcpp > index.cgi
comparison 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 |
comparison
equal
deleted
inserted
replaced
5:7c489c73d62b | 6:0601b6e8e53d |
---|---|
1 struct place; | 1 struct place; |
2 | |
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); | |
2 | 11 |
3 void files_addquotepath(const char *dir, bool issystem); | 12 void files_addquotepath(const char *dir, bool issystem); |
4 void files_addbracketpath(const char *dir, bool issystem); | 13 void files_addbracketpath(const char *dir, bool issystem); |
5 | 14 |
6 void files_read(struct place *, const char *name); | 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); |