memcmp.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:0k
源码类别:

Windows CE

开发平台:

C/C++

  1. #ifdef HAVE_CONFIG_H
  2. #include "config.h"
  3. #endif
  4. #include <stdlib.h>
  5. int memcmp(const void *__s1, const void *__s2, size_t __n)
  6. {
  7. const char *scan1, *scan2;
  8. size_t n;
  9. scan1 = __s1;
  10. scan2 = __s2;
  11. for (n = __n; n > 0; n--)
  12. if (*scan1 == *scan2) {
  13. scan1++;
  14. scan2++;
  15. } else
  16. return *scan1 - *scan2;
  17. return 0;
  18. }