strlen.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. /*  File   : strlen.c
  14.     Author : Richard A. O'Keefe. / Monty
  15.      Michael Widenius; ifdef MC68000
  16.     Updated: 1986-11-30
  17.     Defines: strlen()
  18.     strlen(s) returns the number of characters in s, that is, the number
  19.     of non-NUL characters found before the closing NULEosCh.  Note: some
  20.     non-standard C compilers for 32-bit machines take int to be 16 bits,
  21.     either put up with short strings or change int  to long  throughout
  22.     this package.  Better yet, BOYCOTT such shoddy compilers.
  23.     Beware: the asm version works only if strlen(s) < 65536.
  24. */
  25. #include "strings.h"
  26. #if VaxAsm
  27. size_s strlen(char *s)
  28. {
  29.  asm("locc  $0,$65535,*4(ap)");
  30.  asm("subl3 r0,$65535,r0");
  31. }
  32. #else
  33. #if defined(MC68000) && defined(DS90)
  34. size_s strlen(char *s)
  35. {
  36. asm(" movl 4(a7),a0 ");
  37. asm(" movl a0,a1 ");
  38. asm(".L4: tstb (a0)+ ");
  39. asm(" jne .L4 ");
  40. asm(" movl a0,d0 ");
  41. asm(" subl a1,d0 ");
  42. asm(" subql #1,d0 ");
  43. }
  44. #else
  45. size_s strlen(register char *s)
  46. {
  47.   register char *startpos;
  48.   startpos = s;
  49.   while (*s++);
  50.   return ((size_s) (s-startpos-1));
  51. }
  52. #endif
  53. #endif