hollyhock
string.hpp
Go to the documentation of this file.
1 
7 #pragma once
8 
9 extern "C"
10 char *strcat(char *dest, const char *src);
11 
12 extern "C"
13 const char *strchr(const char *str, char c);
14 
15 extern "C"
16 int strcmp(const char *str1, const char *str2);
17 
18 extern "C"
19 char *strcpy(char *destination, const char *source);
20 
21 extern "C"
22 int strlen(const char *str);