Initial release
This commit is contained in:
parent
36a3e04fce
commit
aa4f07b437
20
include/string.h
Normal file
20
include/string.h
Normal 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 */
|
Loading…
Reference in New Issue
Block a user