hollyhock
All Classes Files Functions Variables Enumerations Enumerator Macros Modules
string.hpp
Go to the documentation of this file.
1
7#pragma once
8
9extern "C"
10char *String_Strcat(char *dest, const char *src);
11
12extern "C"
13const char *String_Strchr(const char *str, char c);
14
15extern "C"
16int String_Strcmp(const char *str1, const char *str2);
17
18extern "C"
19char *String_Strcpy(char *destination, const char *source);
20
21extern "C"
22int String_Strlen(const char *str);