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
RevLine 
[3]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
[5]6#include <stdbool.h>
7
[20]8int cm_hex(const char* str, int len);
9char* cm_html_escape(const char* str);
[3]10char* cm_strcat(const char* a, const char* b);
[16]11char* cm_strcat3(const char* a, const char* b, const char* c);
[3]12char* cm_strdup(const char* str);
[4]13char* cm_trimstart(const char* str);
14char* cm_trimend(const char* str);
15char* cm_trim(const char* str);
[5]16char** cm_split(const char* str, const char* by);
17bool cm_strcaseequ(const char* a, const char* b);
[3]18
19#endif
Note: See TracBrowser for help on using the repository browser.