aboutsummaryrefslogtreecommitdiffstats
path: root/util.h
blob: 1af317f649f6142eec822bdc160e04752df9cd0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __UTIL_H
#define __UTIL_H

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>

char *alloc_new_str_s(char *str, size_t size);
char *alloc_new_str(char *str);

#endif