quark/src/kernel/util/string.c

8 líneas
102 B
C

#include "string.h"
int strlen(char *s){
int len = 0;
while(*(s++)) len++;
return len;
}