block: don't put spaces around :
[ironout.git] / project.h
blob7f53c2584ca2bbdd7763f6fa4df5195086128672
1 #ifndef _PROJECT_H
2 #define _PROJECT_H
4 #include "cfile.h"
6 struct project {
7 struct cfile **files;
8 int count;
9 };
11 struct project *project_init(char *root);
12 void project_free(struct project *project);
14 struct cfile *project_find(struct project *project, char *filename);
16 #endif