libSystem/include/string.h
Pierre Pronchery fe9918dc0e Added hash.c and config.c
Fixed String API
Improved Array API
2005-10-20 19:05:39 +00:00

22 lines
436 B
C

/* string.h */
#ifndef _STRING_H
# define _STRING_H
/* String */
typedef char String;
String * string_new(String const * string);
void string_delete(String * string);
/* useful */
int string_append(String ** string, String const * append);
int string_compare(String const * string, String const * string2);
void string_cut(String * string, unsigned int length);
int string_length(String const * string);
#endif /* !_STRING_H */