/* * Copyright (C) 1991, 1992 Linus Torvalds */ #include /** * strlen - Find the length of a string * @s: The string to be sized */ size_t (strlen)(const char * s) { const char *sc; for (sc = s; *sc != '\0'; ++sc) /* nothing */; return sc - s; } /* * Local variables: * mode: C * c-file-style: "BSD" * c-basic-offset: 8 * tab-width: 8 * indent-tabs-mode: t * End: */