comparison place.h @ 11:b9d50e786322

simplify places
author David A. Holland
date Sun, 19 Dec 2010 19:30:24 -0500
parents 800f3a560a3b
children 6c15ca895585
comparison
equal deleted inserted replaced
10:800f3a560a3b 11:b9d50e786322
5 }; 5 };
6 6
7 void place_init(void); 7 void place_init(void);
8 void place_cleanup(void); 8 void place_cleanup(void);
9 9
10 struct place *place_gettemporary(void);
11 void place_puttemporary(struct place *p);
12 struct place *place_create(void);
13 struct place *place_clone(const struct place *p);
14 void place_destroy(struct place *);
15 void place_setnowhere(struct place *p); 10 void place_setnowhere(struct place *p);
16 void place_setbuiltin(struct place *p, unsigned num); 11 void place_setbuiltin(struct place *p, unsigned num);
17 void place_setcommandline(struct place *p, unsigned column); 12 void place_setcommandline(struct place *p, unsigned word);
18 13
19 struct seenfile *place_seen_file(const struct place *p, char *name, bool fromsystemdir); 14 struct seenfile *place_seen_file(const struct place *p, char *name, bool fromsystemdir);