summaryrefslogtreecommitdiff
path: root/maje.h
diff options
context:
space:
mode:
Diffstat (limited to 'maje.h')
-rw-r--r--maje.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/maje.h b/maje.h
index 5a3cc89..6f0af8d 100644
--- a/maje.h
+++ b/maje.h
@@ -5,12 +5,15 @@
struct majefile {
struct majefile *next;
+ struct majefile *prev;
struct stat st;
char path[];
};
struct majefile *find_source_files(const char *path);
char *find_main(struct majefile *sources);
+struct majefile *find_includes(const struct majefile *file);
void make_makefile(const char *makefile, struct majefile *sources, const char *target);
+struct majefile *insert_file(struct majefile *list, const char *path, const struct stat *st);
#endif