Differences From Artifact [3d3ffe349d]:
- File cfwstring.h — part of check-in [2605e9af3f] at 2012-04-08 17:24:04 on branch trunk — Initial import. (user: js, size: 1680) [annotate] [blame] [check-ins using]
- File src/cfwstring.h — part of check-in [839e11b5aa] at 2012-04-08 17:50:33 on branch trunk — Add a buildsys. (user: js, size: 1680) [annotate] [blame] [check-ins using]
To Artifact [4630719e18]:
- File src/cfwstring.h — part of check-in [891f0add23] at 2012-04-08 19:19:56 on branch trunk — Add cfw_string_append(). (user: js, size: 1735) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
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 |