nckernel  0.1
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
strlen.c
Go to the documentation of this file.
1 #include <sys/types.h>
2 #include <stdio.h>
3 #include <string.h>
4 
5 int strlen(const char *str)
6 {
7  const char *ptr = str;
8  while (*ptr++) {
9  }
10  return (int)(ptr - str) - 1;
11 }
12 
13 /* End of a file */