strmov.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /*
  14.   strmov(dst, src) moves all the  characters  of  src  (including  the
  15.   closing NUL) to dst, and returns a pointer to the new closing NUL in
  16.   dst.  The similar UNIX routine strcpy returns the old value of dst,
  17.   which I have never found useful.  strmov(strmov(dst,a),b) moves a//b
  18.   into dst, which seems useful.
  19. */
  20. #include <my_global.h>
  21. #include "m_string.h"
  22. #ifdef BAD_STRING_COMPILER
  23. #undef strmov
  24. #define strmov strmov_overlapp
  25. #endif
  26. #ifndef strmov
  27. #if !defined(MC68000) && !defined(DS90)
  28. char *strmov(register char *dst, register const char *src)
  29. {
  30.   while ((*dst++ = *src++)) ;
  31.   return dst-1;
  32. }
  33. #else
  34. char *strmov(dst, src)
  35.      char *dst, *src;
  36. {
  37.   asm(" movl 4(a7),a1 ");
  38.   asm(" movl 8(a7),a0 ");
  39.   asm(".L4: movb (a0)+,(a1)+ ");
  40.   asm(" jne .L4 ");
  41.   asm(" movl a1,d0 ");
  42.   asm(" subql #1,d0 ");
  43. }
  44. #endif
  45. #endif /* strmov */