Compare commits

...

1 Commits

Author SHA1 Message Date
tylen
b67f2cf13a src: init project module 2024-10-24 20:45:10 +00:00
2 changed files with 13 additions and 0 deletions

5
src/project/files.c Normal file
View File

@ -0,0 +1,5 @@
#include "files.h"
Lines* get_ascii_text_files_from_root(const char* root) {
return NULL;
}

8
src/project/files.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef CDO_FILES_H_
#define CDO_FILES_H_
#include "../tools/buffer.h"
Lines* get_ascii_text_files_from_root(const char* root);
#endif // CDO_FILES_H_