home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / string / strlen.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-13  |  225 b   |  15 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <string.h>
  3.  
  4. size_t
  5. strlen(const char *str)
  6. {
  7.   const char *s;
  8.  
  9.   if (str == 0)
  10.     return 0;
  11.   for (s = str; *s; ++s);
  12.   return s-str;
  13. }
  14.  
  15.