develop/ktcc: Post-SVN tidy
Some checks failed
Build system / Check kernel codestyle (pull_request) Successful in 25s
Build system / Build (pull_request) Failing after 27s

- Move source code from `trunk` into program root directory.
- Update build files.
This commit is contained in:
2025-05-23 17:49:05 +01:00
parent 46bcaca0b0
commit 42e77931bf
688 changed files with 17 additions and 17 deletions

View File

@@ -0,0 +1,33 @@
/* Copyright (C) 2021 Logaev Maxim (turbocat2001), GPLv2 */
#ifndef _DIRENT_H_
#define _DIRENT_H_
#include <limits.h>
#include <stddef.h>
#define IS_FOLDER 16
#define IS_FILE 0
typedef unsigned ino_t;
struct dirent {
ino_t d_ino; //File serial number.
char d_name[PATH_MAX]; // Name of entry.
unsigned d_type;
};
typedef struct {
struct dirent* objs;
ino_t pos;
ino_t num_objs;
} DIR;
DLLAPI int closedir(DIR* dir);
DLLAPI DIR* opendir(const char* path);
DLLAPI struct dirent* readdir(DIR*);
DLLAPI void rewinddir(DIR* dir);
DLLAPI void seekdir(DIR* dir, unsigned pos);
DLLAPI unsigned telldir(DIR* dir);
#endif // _DIRENT_H_