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
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 struct place *place_gettemporary(void);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
4 void place_puttemporary(struct place *p);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
5 void place_setnowhere(struct place *p);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
6 void place_setbuiltin(struct place *p, unsigned num);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
7 void place_setcommandline(struct place *p, unsigned column);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
8
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
9 void files_init(void);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
10 void files_cleanup(void);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
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
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
15 void file_readquote(struct place *, const char *name);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
16 void file_readbracket(struct place *, const char *name);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
17 void file_readabsolute(struct place *, const char *name);