Numworks Epsilon
1.4.1
Graphing Calculator Operating System
strlen.c
Go to the documentation of this file.
1
#include <string.h>
2
3
size_t
strlen
(
const
char
* s) {
4
const
char
* str = s;
5
while
(*str)
6
str++;
7
return
str - s;
8
}
strlen
size_t strlen(const char *s)
Definition:
strlen.c:3
epsilon
liba
src
strlen.c
Generated by
1.8.14