/*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. * * %sccs.include.redist.c% */ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strlen.c 5.4 (Berkeley) 05/17/90"; #endif /* LIBC_SCCS and not lint */ #include #include size_t strlen(str) const char *str; { register const char *s; for (s = str; *s; ++s); return(s - str); }