home *** CD-ROM | disk | FTP | other *** search
- /*
- (C) 1995-96 AROS - The Amiga Replacement OS
- $Id: strlen.c,v 1.4 1996/10/19 16:56:29 aros Exp $
-
- Desc: ANSI C function strlen()
- Lang: english
- */
- #include <string.h>
- #include <exec/types.h>
-
- size_t strlen (const char * ptr)
- {
- const char * start = ptr;
-
- while (*ptr) ptr ++;
-
- return (IPTR)ptr - (IPTR)start;
- }
-
-