Lephisto/src/lfile.h
Allanis ea6db68433 [Add] No longer need Makefile when working in 'trunk', reads from
directories directly.
[Change] Code clean up.
[Add] Documentation.
2014-05-18 19:54:36 +01:00

10 lines
311 B
C

#pragma once
char* lfile_basePath(void);
int lfile_dirMakeExist(const char* path, ...);
int lfile_fileExists(const char* path, ...);
char** lfile_readDir(int* lfiles, const char* path, ...);
char* lfile_readFile(int* filesize, const char* path, ...);
int lfile_touch(const char* path, ...);