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

#include <stddef.h>

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

#define PATH_MAX 4096

char* dirname(char*);

#endif