repo.or.cz
/
ironout.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
block: don't put spaces around :
[ironout.git]
/
project.h
blob
7f53c2584ca2bbdd7763f6fa4df5195086128672
1
#ifndef _PROJECT_H
2
#define _PROJECT_H
3
4
#include
"cfile.h"
5
6
struct
project
{
7
struct
cfile
**
files
;
8
int
count
;
9
};
10
11
struct
project
*
project_init
(
char
*
root
);
12
void
project_free
(
struct
project
*
project
);
13
14
struct
cfile
*
project_find
(
struct
project
*
project
,
char
*
filename
);
15
16
#endif