block: don't put spaces around :
[ironout.git] / find.h
blob20179f8cabb42d24d5b0115ae0dfa28e672086a5
1 #ifndef _FIND_H
2 #define _FIND_H
4 #include "cfile.h"
5 #include "project.h"
7 struct hit {
8 long start;
9 long end;
10 struct cfile *cfile;
11 struct hit *next;
14 struct hit *find_name(struct project *project, struct name *name);
15 void free_hits(struct hit *hits);
17 #endif