New directory structure

This commit is contained in:
nigel
2021-05-02 15:23:50 -04:00
parent 5bd25a3737
commit b44f6761f1
12 changed files with 122 additions and 55 deletions

View File

@ -0,0 +1,8 @@
#include <stddef.h>
size_t strlen(const char* str){
size_t len = 0;
while(str[len]){
len++;
}
return len;
}