aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/std.h
blob: 2e4dbb1cc2652d3498e0d7b6b6b5517e292aa5b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef DUCC_STD_H
#define DUCC_STD_H

#include <stddef.h>

// TODO: <stdlib.h>
int mkstemps(char*, int);

#define F_OK 0
#define R_OK 4
int access(const char*, int);

#define PATH_MAX 4096

char* dirname(char*);

#endif