blob: 3ad725d45aef077d129549094f2ceb9ec22f85aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __STATH_
#define __STATH_
#include <stdio.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
typedef enum { STAT_OK, STAT_ERR } stat_res_t;
stat_res_t mstat(char *file);
#endif
|