Add size_t

This commit is contained in:
Aetias
2024-04-08 23:22:30 +02:00
parent ea0165eb26
commit 7142c0c83b
+2
View File
@@ -1,6 +1,8 @@
#ifndef _C_STRING_H
#define _C_STRING_H
typedef unsigned int size_t;
size_t strlen(const char *str);
char* strcpy(char *dest, const char *src);
char* strncpy(char *dest, const char *src, size_t num);