home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / palmos / pippy-0.6beta-src.tar.gz / pippy-0.6beta-src.tar / pippy-0.6beta-src / src / Palm / libc / strncmp.c < prev    next >
C/C++ Source or Header  |  2000-12-21  |  391b  |  27 lines

  1. /*
  2.  *  linux/lib/string.c
  3.  *
  4.  *  Copyright (C) 1991, 1992  Linus Torvalds
  5.  */
  6.  
  7. #include <sys/types.h>
  8. #include <string.h>
  9. #include <ctype.h>
  10.  
  11.  
  12. #ifndef __HAVE_ARCH_STRNCMP
  13. int strncmp(const char * cs,const char * ct,size_t count)
  14. {
  15.   register signed char __res = 0;
  16.   
  17.   while (count) {
  18.     if ((__res = *cs - *ct++) != 0 || !*cs++)
  19.       break;
  20.     count--;
  21.   }
  22.   
  23.   return __res;
  24. }
  25. #endif
  26.  
  27.