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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2002 MySQL 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. /*  File   : strend.c
  18.     Author : Richard A. O'Keefe.
  19.     Updated: 23 April 1984
  20.     Defines: strend()
  21.     strend(s) returns a character pointer to the NUL which ends s.  That
  22.     is,  strend(s)-s  ==  strlen(s). This is useful for adding things at
  23.     the end of strings.  It is redundant, because  strchr(s,'')  could
  24.     be used instead, but this is clearer and faster.
  25.     Beware: the asm version works only if strlen(s) < 65535.
  26. */
  27. #include <my_global.h>
  28. #include "m_string.h"
  29. #if VaxAsm
  30. char *strend(s)
  31. const char *s;
  32. {
  33.   asm("locc $0,$65535,*4(ap)");
  34.   asm("movl r1,r0");
  35. }
  36. #else /* ~VaxAsm */
  37. char *strend(register const char *s)
  38. {
  39.   while (*s++);
  40.   return (char*) (s-1);
  41. }
  42. #endif /* VaxAsm */