mirror of
https://github.com/simon987/sist2.git
synced 2025-04-20 18:56:49 +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
|