os/string.h

13 lines
275 B
C
Raw Normal View History

2024-05-21 18:41:16 +03:00
#ifndef STRING_H
#define STRING_H
2024-05-22 00:15:05 +03:00
#include <stddef.h>
2024-05-21 18:41:16 +03:00
char *strchr(const char *str, int c);
char *strtok(char *str, const char *delim);
int strcmp(const char *str1, const char *str2);
2024-05-22 00:15:05 +03:00
size_t strlen(const char *str);
void *memset(void *ptr, int value, size_t size);
2024-05-21 18:41:16 +03:00
#endif