shadeos/include/strings.h

10 lines
206 B
C
Raw Normal View History

2022-05-13 03:08:46 +00:00
#ifndef STRINGS_H
#define STRINGS_H
void itoa(int n, char str[]);
void strrev(char s[]);
int strlen(char s[]);
char* strcpy(char* strDest, const char* strSrc);
char* strcnc(char* str1, char* str2);
#endif