15 lines
252 B
C
15 lines
252 B
C
|
|
||
|
|
||
|
#ifndef SOURCEFS_H
|
||
|
#define SOURCEFS_H
|
||
|
|
||
|
/**
|
||
|
* Initializes the source file handling.
|
||
|
*
|
||
|
* @param root_path The root of the source files folder.
|
||
|
* @return 0 on success, 1 on failure.
|
||
|
*/
|
||
|
int source_init(const char *root_path);
|
||
|
|
||
|
#endif // !SOURCEFS_H
|