Added implementation for string length Added implementation for string copy Added implementation for string concatination
9 lines
141 B
C
9 lines
141 B
C
#ifndef X_STRING_H
|
|
#define X_STRING_H
|
|
|
|
int x_strlen(char*);
|
|
void x_strcpy(char*, char*, const int);
|
|
char* x_strconcat(char*, char*);
|
|
|
|
#endif
|