source:
Main/trunk/Common/cm_string.h@
4
Last change on this file since 4 was 4, checked in by , on Sep 13, 2024 at 6:39:33 PM | |
---|---|
|
|
File size: 254 bytes |
Rev | Line | |
---|---|---|
[3] | 1 | /* $Id: cm_string.h 4 2024-09-13 09:39:33Z nishi $ */ |
2 | ||
3 | #ifndef __CM_STRING_H__ | |
4 | #define __CM_STRING_H__ | |
5 | ||
6 | char* cm_strcat(const char* a, const char* b); | |
7 | char* cm_strdup(const char* str); | |
[4] | 8 | char* cm_trimstart(const char* str); |
9 | char* cm_trimend(const char* str); | |
10 | char* cm_trim(const char* str); | |
[3] | 11 | |
12 | #endif |
Note:
See TracBrowser
for help on using the repository browser.