Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. /* strlen( const char * )
  2.  
  3.    This file is part of the Public Domain C Library (PDCLib).
  4.    Permission is granted to use, modify, and / or redistribute at will.
  5. */
  6.  
  7. #include <string.h>
  8.  
  9. size_t strlen( const char * s )
  10. {
  11.     size_t rc = 0;
  12.  
  13.     while ( s[rc] )
  14.     {
  15.         ++rc;
  16.     }
  17.  
  18.     return rc;
  19. }