home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / strings / bcmp.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  2KB  |  64 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17.  
  18. /*
  19.   bcmp(s1, s2, len) returns 0 if the "len" bytes starting at "s1" are
  20.   identical to the "len" bytes starting at "s2", non-zero if they are
  21.   different.
  22.   Now only used with purify.
  23. */
  24.  
  25. #include <global.h>
  26. #include "m_string.h"
  27.  
  28. #if !defined(bcmp) && !defined(HAVE_BCMP)
  29.  
  30. #if defined(MC68000) && defined(DS90)
  31.  
  32. int bcmp(s1,s2, len)
  33. const char *s1;
  34. const char *s2;
  35. uint len;                    /* 0 <= len <= 65535 */
  36. {
  37.   asm("        movl    12(a7),d0    ");
  38.   asm("        subqw    #1,d0        ");
  39.   asm("        blt    .L5        ");
  40.   asm("        movl    4(a7),a1    ");
  41.   asm("        movl    8(a7),a0    ");
  42.   asm(".L4:    cmpmb    (a0)+,(a1)+    ");
  43.   asm("        dbne    d0,.L4        ");
  44.   asm(".L5:    addqw    #1,d0        ");
  45. }
  46.  
  47. #else
  48.  
  49. #ifdef HAVE_purify
  50. int my_bcmp(s1, s2, len)
  51. #else
  52. int bcmp(s1, s2, len)
  53. #endif
  54.     register const char *s1;
  55.     register const char *s2;
  56.     register uint len;
  57. {
  58.   while (len-- != 0 && *s1++ == *s2++) ;
  59.   return len+1;
  60. }
  61.  
  62. #endif
  63. #endif /* BSD_FUNCS */
  64.