blob: fd6bbfd7b6f6cc19dbbdb1af58081b3ea53505f3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __UTIL_H
#define __UTIL_H
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
char *alloc_new_str_s(char *str, size_t size);
char *alloc_new_str(char *str);
#endif
|