diff options
author | nirav <nirav@teisuu.com> | 2018-09-30 21:39:59 +0530 |
---|---|---|
committer | Dandelion <nirav@teisuu.com> | 2018-09-30 21:39:59 +0530 |
commit | fde5cb29f95f51ed075c34f5eebdccb81fa2f0e4 (patch) | |
tree | 68cbae9ac3e84cce4a4b6402d046e2a31bb4e188 /src/file.h | |
parent | 51d91d63181f82f605a8b9de6d280622ef697630 (diff) | |
download | im-fde5cb29f95f51ed075c34f5eebdccb81fa2f0e4.tar.gz im-fde5cb29f95f51ed075c34f5eebdccb81fa2f0e4.zip |
Added async file loading
Diffstat (limited to 'src/file.h')
-rw-r--r-- | src/file.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2,10 +2,10 @@ #define __FILE_H int scan(const char *file_name); -char *get_next_file(); -char *get_prev_file(); -char *get_first_file(); -char *get_last_file(); +void next_file(); +void prev_file(); +void first_file(); +void last_file(); void clean(); #endif |