1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
/* jdupes directory scanning code
* This file is part of jdupes; see jdupes.c for license information */
#ifndef JDUPES_LOADDIR_H
#define JDUPES_LOADDIR_H
#ifdef __cplusplus
extern "C" {
#endif
char *remove_leading_dotslashes(char *path);
//file_t *grokfile(const char * const restrict name, file_t * restrict * const restrict filelistp);
void loaddir(char *dir, file_t * restrict * const restrict filelistp, int recurse);
#ifdef __cplusplus
}
#endif
#endif /* JDUPES_LOADDIR_H */
|