mirror of
https://github.com/OpenSolo/OpenSolo.git
synced 2025-04-30 06:34:38 +02:00
16 lines
228 B
C
16 lines
228 B
C
#ifndef FILE_UTIL_H
|
|
#define FILE_UTIL_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int file_exists(const char *filename);
|
|
extern int file_touch(const char *filename);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif /* FILE_UTIL_H */
|