blob: 6cfb8e5d9147f4287453cb609465a67bcb3417af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef STR_H
#define STR_H
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "def.h"
BEGIN_C
char * str_clone (char *, size_t);
char * str_delete (char *);
END_C
#endif /* STR_H */
|