dodo/src/x_string.h
2024-08-19 21:59:34 -07:00

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