Mercurial > ~dholland > hg > tradcpp > index.cgi
diff files.h @ 6:0601b6e8e53d
checkpoint - can find files
author | David A. Holland |
---|---|
date | Sun, 19 Dec 2010 18:55:51 -0500 (2010-12-19) |
parents | ee9a66b87c70 |
children | b8167949474a |
line wrap: on
line diff
--- a/files.h Sun Dec 19 17:53:49 2010 -0500 +++ b/files.h Sun Dec 19 18:55:51 2010 -0500 @@ -1,6 +1,17 @@ struct place; +struct place *place_gettemporary(void); +void place_puttemporary(struct place *p); +void place_setnowhere(struct place *p); +void place_setbuiltin(struct place *p, unsigned num); +void place_setcommandline(struct place *p, unsigned column); + +void files_init(void); +void files_cleanup(void); + void files_addquotepath(const char *dir, bool issystem); void files_addbracketpath(const char *dir, bool issystem); -void files_read(struct place *, const char *name); +void file_readquote(struct place *, const char *name); +void file_readbracket(struct place *, const char *name); +void file_readabsolute(struct place *, const char *name);