micro-utils/libmu/recurse.h

6 lines
243 B
C
Raw Normal View History

2024-07-09 19:33:45 +00:00
#ifndef _RECURSE_H
#define _RECURSE_H
int mu_recurse(const char *restrict prog_name, int link_flag, const char *restrict path, void *restrict arg, int (*file_act)(const char *path, void *p), int (*dir_act)(const char *path, void *p));
#endif