micro-utils/libmu/recurse.h
2024-07-09 22:33:45 +03:00

6 lines
243 B
C

#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