CX Framework
Cross-platform C utility framework
Loading...
Searching...
No Matches
cstrutil.h
Go to the documentation of this file.
1
3
4#pragma once
5
6#include <cx/platform/cpp.h>
7#include <stddef.h>
8
9CX_C_BEGIN
10
17
25size_t cstrLen(_In_z_ const char *s);
26
34_Ret_z_ char *cstrDup(_In_z_ const char *s);
35
40size_t cstrLenw(_In_z_ const unsigned short *s);
41
49_Ret_z_ unsigned short *cstrDupw(_In_z_ const unsigned short *s);
50
58int cstrCmpi(_In_z_ const char *s1, _In_z_ const char *s2);
59
61// end of cstrutil group
62
63CX_C_END
int cstrCmpi(const char *s1, const char *s2)
unsigned short * cstrDupw(const unsigned short *s)
size_t cstrLenw(const unsigned short *s)
size_t cstrLen(const char *s)
char * cstrDup(const char *s)