Files
blankos/src/libc/string.h
2024-08-09 11:49:47 +02:00

9 lines
184 B
C

#ifndef INCLUDE_STRING_H
#define INCLUDE_STRING_H
int strlen(const char* str);
int strcmp(const char* str1, const char* str2);
char* strtok(char* str, const char* delimiter);
#endif