2021-04-27 16:33:31 +00:00
|
|
|
/* Copyright (C) 2021 Logaev Maxim (turbocat2001), GPLv2 */
|
|
|
|
|
|
|
|
#ifndef _DIRENT_H_
|
|
|
|
#define _DIRENT_H_
|
|
|
|
|
|
|
|
#include <limits.h>
|
2022-04-15 09:11:49 +00:00
|
|
|
#include <stddef.h>
|
2021-04-27 16:33:31 +00:00
|
|
|
|
|
|
|
#define IS_FOLDER 16
|
2022-04-15 09:11:49 +00:00
|
|
|
#define IS_FILE 0
|
2021-04-27 16:33:31 +00:00
|
|
|
|
|
|
|
typedef unsigned ino_t;
|
|
|
|
|
2022-04-15 09:11:49 +00:00
|
|
|
struct dirent {
|
|
|
|
ino_t d_ino; //File serial number.
|
|
|
|
char d_name[PATH_MAX]; // Name of entry.
|
|
|
|
unsigned d_type;
|
2021-04-27 16:33:31 +00:00
|
|
|
};
|
|
|
|
|
2022-04-15 09:11:49 +00:00
|
|
|
typedef struct {
|
|
|
|
struct dirent* objs;
|
2021-04-27 16:33:31 +00:00
|
|
|
ino_t pos;
|
2022-04-15 09:11:49 +00:00
|
|
|
ino_t num_objs;
|
|
|
|
} DIR;
|
|
|
|
|
2022-05-09 18:19:05 +00:00
|
|
|
extern int _FUNC(closedir)(DIR* dir);
|
|
|
|
extern DIR* _FUNC(opendir)(const char* path);
|
|
|
|
extern struct dirent* _FUNC(readdir)(DIR*);
|
|
|
|
extern void _FUNC(rewinddir)(DIR* dir);
|
|
|
|
extern void _FUNC(seekdir)(DIR* dir, unsigned pos);
|
|
|
|
extern unsigned _FUNC(telldir)(DIR* dir);
|
2021-04-27 16:33:31 +00:00
|
|
|
|
2021-05-23 15:28:07 +00:00
|
|
|
#endif // _DIRENT_H_
|