cfw_string_len() -> cfw_string_length().

This commit is contained in:
Jonathan Schleifer 2012-04-25 11:24:15 +02:00
parent feb90593b9
commit 8645ce783b
2 changed files with 2 additions and 2 deletions

View file

@ -34,7 +34,7 @@ typedef struct CFWString CFWString;
extern CFWClass *cfw_string;
extern char* cfw_strdup(const char*);
extern const char* cfw_string_c(CFWString*);
extern size_t cfw_string_len(CFWString*);
extern size_t cfw_string_length(CFWString*);
extern bool cfw_string_set(CFWString*, const char*);
extern bool cfw_string_append(CFWString*, CFWString*);
extern size_t cfw_string_find(CFWString*, CFWString*, cfw_range_t);