summaryrefslogtreecommitdiffstats
path: root/sw/z80/kernel/include/fs/dirent.h
blob: ea5699bae4da4902e5892e01ee076c570cde2f95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef DIRENT_H
#define DIRENT_H

#include "types.h"

struct dirent
{
    ino_t       i_number;       // inode referred
    uint8_t     name_size;    // size of the name
    char        name[];         // name of the referred inode
}

#endif