cfw_string_len() -> cfw_string_length().
This commit is contained in:
parent
feb90593b9
commit
8645ce783b
2 changed files with 2 additions and 2 deletions
|
@ -149,7 +149,7 @@ cfw_string_c(CFWString *str)
|
|||
}
|
||||
|
||||
size_t
|
||||
cfw_string_len(CFWString *string)
|
||||
cfw_string_length(CFWString *string)
|
||||
{
|
||||
return string->len;
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue