File: loaddir.h

package info (click to toggle)
jdupes 1.31.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,692 kB
  • sloc: ansic: 5,038; sh: 561; makefile: 251; xml: 9
file content (19 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (2)
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 */