source: Main/trunk/Common/cm_string.h@ 20

Last change on this file since 20 was 20, checked in by Nishi, on Sep 14, 2024 at 6:59:15 PM

can show index

  • Property svn:keywords set to Id
File size: 516 bytes
Line 
1/* $Id: cm_string.h 20 2024-09-14 09:59:15Z nishi $ */
2
3#ifndef __CM_STRING_H__
4#define __CM_STRING_H__
5
6#include <stdbool.h>
7
8int cm_hex(const char* str, int len);
9char* cm_html_escape(const char* str);
10char* cm_strcat(const char* a, const char* b);
11char* cm_strcat3(const char* a, const char* b, const char* c);
12char* cm_strdup(const char* str);
13char* cm_trimstart(const char* str);
14char* cm_trimend(const char* str);
15char* cm_trim(const char* str);
16char** cm_split(const char* str, const char* by);
17bool cm_strcaseequ(const char* a, const char* b);
18
19#endif
Note: See TracBrowser for help on using the repository browser.