Initial release

This commit is contained in:
Pierre Pronchery 2005-08-28 11:25:28 +00:00
parent 36a3e04fce
commit aa4f07b437

20
include/string.h Normal file
View File

@ -0,0 +1,20 @@
/* string.h */
#ifndef _STRING_H
# define _STRING_H
/* String */
typedef char String;
String * string_new(String * string);
void string_delete(String * string);
/* useful */
int string_append(String * string, String * append);
void string_cut(String * string, unsigned int length);
int string_length(String * string);
#endif /* !_STRING_H */