src: init project module

This commit is contained in:
tylen 2024-10-24 20:45:10 +00:00
parent c47488479b
commit b67f2cf13a
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_