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

Last change on this file since 32 was 21, checked in by Nishi, on Sep 14, 2024 at 9:39:39 PM

can send file now

  • Property svn:keywords set to Id
File size: 554 bytes
Line 
1/* $Id: cm_string.h 21 2024-09-14 12:39:39Z 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_url_escape(const char* str);
11char* cm_strcat(const char* a, const char* b);
12char* cm_strcat3(const char* a, const char* b, const char* c);
13char* cm_strdup(const char* str);
14char* cm_trimstart(const char* str);
15char* cm_trimend(const char* str);
16char* cm_trim(const char* str);
17char** cm_split(const char* str, const char* by);
18bool cm_strcaseequ(const char* a, const char* b);
19
20#endif
Note: See TracBrowser for help on using the repository browser.