string.h (235B)
1 #ifndef _STR_H 2 #define _STR_H 3 typedef struct str { 4 char *str; 5 size_t len, size; 6 } str_t; 7 8 str_t *str_create(); 9 void str_free(str_t *); 10 void str_reset(str_t *); 11 void str_append_ch(str_t *, uint32_t); 12 void str_toupper(str_t *); 13 #endif