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

Last change on this file since 16 was 16, checked in by Nishi, on Sep 14, 2024 at 12:09:52 AM

can parse http now

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