Mercurial > ~dholland > hg > tradcpp > index.cgi
annotate place.h @ 11:b9d50e786322
simplify places
author | David A. Holland |
---|---|
date | Sun, 19 Dec 2010 19:30:24 -0500 |
parents | 800f3a560a3b |
children | 6c15ca895585 |
rev | line source |
---|---|
8 | 1 struct place { |
2 struct seenfile *file; | |
3 unsigned line; | |
4 unsigned column; | |
5 }; | |
6 | |
10 | 7 void place_init(void); |
8 void place_cleanup(void); | |
9 | |
8 | 10 void place_setnowhere(struct place *p); |
11 void place_setbuiltin(struct place *p, unsigned num); | |
11 | 12 void place_setcommandline(struct place *p, unsigned word); |
8 | 13 |
10 | 14 struct seenfile *place_seen_file(const struct place *p, char *name, bool fromsystemdir); |