Subversion Repositories Kolibri OS

Rev

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

  1. unsigned int strlen(const char* string)
  2. {
  3.         int i;
  4.         i=0;
  5.         while (*string++) i++;
  6.         return i;
  7. }
  8.