os/string.h
2024-05-22 00:15:05 +03:00

13 lines
275 B
C

#ifndef STRING_H
#define STRING_H
#include <stddef.h>
char *strchr(const char *str, int c);
char *strtok(char *str, const char *delim);
int strcmp(const char *str1, const char *str2);
size_t strlen(const char *str);
void *memset(void *ptr, int value, size_t size);
#endif