annotate files.h @ 7:b8167949474a

make places work better
author David A. Holland
date Sun, 19 Dec 2010 19:08:24 -0500
parents 0601b6e8e53d
children 97243badae69
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);
7
b8167949474a make places work better
David A. Holland
parents: 6
diff changeset
5 struct place *place_create(void);
b8167949474a make places work better
David A. Holland
parents: 6
diff changeset
6 struct place *place_clone(const struct place *p);
b8167949474a make places work better
David A. Holland
parents: 6
diff changeset
7 void place_destroy(struct place *);
6
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
8 void place_setnowhere(struct place *p);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
9 void place_setbuiltin(struct place *p, unsigned num);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
10 void place_setcommandline(struct place *p, unsigned column);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
11
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
12 void files_init(void);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
13 void files_cleanup(void);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
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
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
18 void file_readquote(struct place *, const char *name);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
19 void file_readbracket(struct place *, const char *name);
0601b6e8e53d checkpoint - can find files
David A. Holland
parents: 4
diff changeset
20 void file_readabsolute(struct place *, const char *name);