summaryrefslogtreecommitdiffstats
path: root/sw/z80/kernel/include/stat.h
blob: 44c0f6393be6fc623b066634abcffd8462f6de31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __STAT_H__
#define __STAT_H__

#include "types.h"

struct stat
{
    inode_t     inode;      /* inode reference */

    uint        mode :3;    /* mode */
    uint        uid :3;     /* owner id */
    uint        type :2;    /* file, dir or link */

    devsize_t   size;       /* file size */

    size_t      blk_size;   /* single block size */
    size_t      blk_used;   /* blocks used by the file */

    time_t      ctime;      /* creation time */
}

struct stat * stat(const char *path, struct stat *buffer);

#endif  // __STAT_H__