mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
fa9abe95be
FILENAME_MAX and MAX_PATH are both 260 on Windows, however, MAX_PATH is used throughout the other Win32 code in Git, and also defines the length of file name buffers in the Win32 API (e.g. WIN32_FIND_DATA.cFileName, from which we're copying the dirent data). Signed-off-by: Karsten Blees <blees@dcon.de> Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com> Signed-off-by: Stepan Kasal <kasal@ucw.cz> Signed-off-by: Junio C Hamano <gitster@pobox.com>
20 lines
400 B
C
20 lines
400 B
C
#ifndef DIRENT_H
|
|
#define DIRENT_H
|
|
|
|
typedef struct DIR DIR;
|
|
|
|
#define DT_UNKNOWN 0
|
|
#define DT_DIR 1
|
|
#define DT_REG 2
|
|
#define DT_LNK 3
|
|
|
|
struct dirent {
|
|
unsigned char d_type; /* file type to prevent lstat after readdir */
|
|
char d_name[MAX_PATH]; /* file name */
|
|
};
|
|
|
|
DIR *opendir(const char *dirname);
|
|
struct dirent *readdir(DIR *dir);
|
|
int closedir(DIR *dir);
|
|
|
|
#endif /* DIRENT_H */
|