24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef __COREFW_STRING_H__
#define __COREFW_STRING_H__
#include "class.h"
typedef struct CFWString CFWString;
extern CFWClass *cfw_string;
extern const char* cfw_string_c(CFWString*);
extern size_t cfw_string_len(CFWString*);
extern bool cfw_string_set(CFWString*, const char*);
extern bool cfw_string_append(CFWString*, CFWString*);
#endif
|
>
>
|
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef __COREFW_STRING_H__
#define __COREFW_STRING_H__
#include "class.h"
#include "range.h"
typedef struct CFWString CFWString;
extern CFWClass *cfw_string;
extern const char* cfw_string_c(CFWString*);
extern size_t cfw_string_len(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);
#endif
|