syslinux/com32/lib/strlen.c
<<
>>
Prefs
   1/*
   2 * strlen()
   3 */
   4
   5#include <string.h>
   6
   7size_t strlen(const char *s)
   8{
   9    const char *ss = s;
  10    while (*ss)
  11        ss++;
  12    return ss - s;
  13}
  14
lxr.linux.no kindly hosted by Redpill Linpro AS, provider of Linux consulting and operations services since 1995.