mirror of
https://github.com/simon987/sist2.git
synced 2025-04-18 01:36:42 +00:00
11 lines
147 B
C
11 lines
147 B
C
#ifndef WALK_H
|
|
#define WALK_H
|
|
|
|
#define _XOPEN_SOURCE 500
|
|
|
|
int walk_directory_tree(const char *);
|
|
|
|
int iterate_file_list(void* input_file);
|
|
|
|
#endif
|