libraries/src/string.c

9 lines
202 B
C
Raw Normal View History

// This file is part of noxos and licensed under the MIT open source license
#include "nox/string.h"
uint64_t strlen(string_t str) {
uint64_t n = 0;
while (*str++ != '\0') n++;
return n;
}