mirror of
https://github.com/sist2app/sist2.git
synced 2026-01-17 00:26:28 +00:00
12 lines
168 B
C
12 lines
168 B
C
#ifndef WALK_H
|
|
#define WALK_H
|
|
|
|
#undef _XOPEN_SOURCE
|
|
#define _XOPEN_SOURCE 500
|
|
|
|
int walk_directory_tree(const char *);
|
|
|
|
int iterate_file_list(void* input_file);
|
|
|
|
#endif
|