CoreFW  Diff

Differences From Artifact [3d3ffe349d]:

To Artifact [4630719e18]:


30
31
32
33
34
35
36

37
38
#include "cfwclass.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*);


#endif







>


30
31
32
33
34
35
36
37
38
39
#include "cfwclass.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