m_string.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:8k
源码类别:

模拟服务器

开发平台:

C/C++

  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. /* There may be prolems include all of theese. Try to test in
  18.    configure with ones are needed? */
  19. /*  This is needed for the definitions of strchr... on solaris */
  20. #ifndef _m_string_h
  21. #define _m_string_h
  22. #ifndef __USE_GNU
  23. #define __USE_GNU /* We want to use stpcpy */
  24. #endif
  25. #if defined(HAVE_STRINGS_H)
  26. #include <strings.h>
  27. #endif
  28. #if defined(HAVE_STRING_H)
  29. #include <string.h>
  30. #endif
  31. /* Correct some things for UNIXWARE7 */
  32. #ifdef HAVE_UNIXWARE7_THREADS
  33. #undef HAVE_STRINGS_H
  34. #undef HAVE_MEMORY_H
  35. #define HAVE_MEMCPY
  36. #ifndef HAVE_MEMMOVE
  37. #define HAVE_MEMMOVE
  38. #endif
  39. #undef HAVE_BCMP
  40. #undef bcopy
  41. #undef bcmp
  42. #undef bzero
  43. #endif /* HAVE_UNIXWARE7_THREADS */
  44. #ifdef _AIX
  45. #undef HAVE_BCMP
  46. #endif
  47. /*  This is needed for the definitions of bzero... on solaris */
  48. #if defined(HAVE_STRINGS_H) && !defined(HAVE_mit_thread)
  49. #include <strings.h>
  50. #endif
  51. /*  This is needed for the definitions of memcpy... on solaris */
  52. #if defined(HAVE_MEMORY_H) && !defined(__cplusplus)
  53. #include <memory.h>
  54. #endif
  55. #if !defined(HAVE_MEMCPY) && !defined(HAVE_MEMMOVE)
  56. # define memcpy(d, s, n) bcopy ((s), (d), (n))
  57. # define memset(A,C,B) bfill((A),(B),(C))
  58. # define memmove(d, s, n) bmove ((d), (s), (n))
  59. #elif defined(HAVE_MEMMOVE)
  60. # define bmove(d, s, n) memmove((d), (s), (n))
  61. #else
  62. # define memmove(d, s, n) bmove((d), (s), (n)) /* our bmove */
  63. #endif
  64. /* Unixware 7 */
  65. #if !defined(HAVE_BFILL)
  66. # define bfill(A,B,C)           memset((A),(C),(B))
  67. # define bmove_allign(A,B,C)    memcpy((A),(B),(C))
  68. #endif
  69. #if !defined(HAVE_BCMP)
  70. # define bcopy(s, d, n) memcpy((d), (s), (n))
  71. # define bcmp(A,B,C) memcmp((A),(B),(C))
  72. # define bzero(A,B) memset((A),0,(B))
  73. # define bmove_allign(A,B,C)    memcpy((A),(B),(C))
  74. #endif
  75. #if defined(__cplusplus) && !defined(OS2)
  76. extern "C" {
  77. #endif
  78. #if defined(HAVE_STPCPY) && !defined(HAVE_mit_thread)
  79. #define strmov(A,B) stpcpy((A),(B))
  80. #ifndef stpcpy
  81. extern char *stpcpy(char *, const char *); /* For AIX with gcc 2.95.3 */
  82. #endif
  83. #endif
  84. extern char NEAR _dig_vec[]; /* Declared in int2str() */
  85. #ifdef BAD_STRING_COMPILER
  86. #define strmov(A,B)  (memccpy(A,B,0,INT_MAX)-1)
  87. #else
  88. #define strmov_overlapp(A,B) strmov(A,B)
  89. #define strmake_overlapp(A,B,C) strmake(A,B,C)
  90. #endif
  91. #ifdef BAD_MEMCPY /* Problem with gcc on Alpha */
  92. #define memcpy_fixed(A,B,C) bmove((A),(B),(C))
  93. #else
  94. #define memcpy_fixed(A,B,C) memcpy((A),(B),(C))
  95. #endif
  96. #ifdef MSDOS
  97. #undef bmove_allign
  98. #define bmove512(A,B,C) bmove_allign(A,B,C)
  99. #define my_itoa(A,B,C) itoa(A,B,C)
  100. #define my_ltoa(A,B,C) ltoa(A,B,C)
  101. extern void bmove_allign(gptr dst,const gptr src,uint len);
  102. #endif
  103. #if (!defined(USE_BMOVE512) || defined(HAVE_purify)) && !defined(bmove512)
  104. #define bmove512(A,B,C) memcpy(A,B,C)
  105. #endif
  106. /* Prototypes for string functions */
  107. #if !defined(bfill) && !defined(HAVE_BFILL)
  108. extern void bfill(gptr dst,uint len,pchar fill);
  109. #endif
  110. #if !defined(bzero) && !defined(HAVE_BZERO)
  111. extern void bzero(gptr dst,uint len);
  112. #endif
  113. #if !defined(bcmp) && !defined(HAVE_BCMP)
  114. extern int bcmp(const char *s1,const char *s2,uint len);
  115. #ifdef HAVE_purify
  116. extern int my_bcmp(const char *s1,const char *s2,uint len);
  117. #define bcmp(A,B,C) my_bcmp((A),(B),(C))
  118. #endif
  119. #endif
  120. #ifndef bmove512
  121. extern void bmove512(gptr dst,const gptr src,uint len);
  122. #endif
  123. #if !defined(HAVE_BMOVE) && !defined(bmove)
  124. extern void bmove(char *dst, const char *src,uint len);
  125. #endif
  126. extern void bmove_upp(char *dst,const char *src,uint len);
  127. extern void bchange(char *dst,uint old_len,const char *src,
  128.      uint new_len,uint tot_len);
  129. extern void strappend(char *s,uint len,pchar fill);
  130. extern char *strend(const char *s);
  131. extern  char *strcend(const char *, pchar);
  132. extern char *strfield(char *src,int fields,int chars,int blanks,
  133.    int tabch);
  134. extern char *strfill(my_string s,uint len,pchar fill);
  135. extern uint strinstr(const char *str,const char *search);
  136. extern  uint r_strinstr(reg1 my_string str,int from, reg4 my_string search);
  137. extern char *strkey(char *dst,char *head,char *tail,char *flags);
  138. extern char *strmake(char *dst,const char *src,uint length);
  139. #ifndef strmake_overlapp
  140. extern char *strmake_overlapp(char *dst,const char *src, uint length);
  141. #endif
  142. #ifndef strmov
  143. extern char *strmov(char *dst,const char *src);
  144. #endif
  145. extern char *strnmov(char *dst,const char *src,uint n);
  146. extern char *strsuff(const char *src,const char *suffix);
  147. extern char *strcont(const char *src,const char *set);
  148. extern char *strxcat _VARARGS((char *dst,const char *src, ...));
  149. extern char *strxmov _VARARGS((char *dst,const char *src, ...));
  150. extern char *strxcpy _VARARGS((char *dst,const char *src, ...));
  151. extern char *strxncat _VARARGS((char *dst,uint len, const char *src, ...));
  152. extern char *strxnmov _VARARGS((char *dst,uint len, const char *src, ...));
  153. extern char *strxncpy _VARARGS((char *dst,uint len, const char *src, ...));
  154. /* Prototypes of normal stringfunctions (with may ours) */
  155. #ifdef WANT_STRING_PROTOTYPES
  156. extern char *strcat(char *, const char *);
  157. extern char *strchr(const char *, pchar);
  158. extern char *strrchr(const char *, pchar);
  159. extern char *strcpy(char *, const char *);
  160. extern int strcmp(const char *, const char *);
  161. #ifndef __GNUC__
  162. extern size_t strlen(const char *);
  163. #endif
  164. #endif
  165. #ifndef HAVE_STRNLEN 
  166. extern uint strnlen(const char *s, uint n);
  167. #endif
  168. #if !defined(__cplusplus)
  169. #ifndef HAVE_STRPBRK
  170. extern char *strpbrk(const char *, const char *);
  171. #endif
  172. #ifndef HAVE_STRSTR
  173. extern char *strstr(const char *, const char *);
  174. #endif
  175. #endif
  176. extern int is_prefix(const char *, const char *);
  177. /* Conversion rutins */
  178. #ifdef USE_MY_ITOA
  179. extern char *my_itoa(int val,char *dst,int radix);
  180. extern char *my_ltoa(long val,char *dst,int radix);
  181. #endif
  182. extern char *llstr(longlong value,char *buff);
  183. #ifndef HAVE_STRTOUL
  184. extern long strtol(const char *str, char **ptr, int base);
  185. extern ulong strtoul(const char *str, char **ptr, int base);
  186. #endif
  187. extern char *int2str(long val,char *dst,int radix);
  188. extern char *int10_to_str(long val,char *dst,int radix);
  189. extern char *str2int(const char *src,int radix,long lower,long upper,
  190.  long *val);
  191. #if SIZEOF_LONG == SIZEOF_LONG_LONG
  192. #define longlong2str(A,B,C) int2str((A),(B),(C))
  193. #define longlong10_to_str(A,B,C) int10_to_str((A),(B),(C))
  194. #define strtoll(A,B,C) strtol((A),(B),(C))
  195. #define strtoull(A,B,C) strtoul((A),(B),(C))
  196. #ifndef HAVE_STRTOULL
  197. #define HAVE_STRTOULL
  198. #endif
  199. #else
  200. #ifdef HAVE_LONG_LONG
  201. extern char *longlong2str(longlong val,char *dst,int radix);
  202. extern char *longlong10_to_str(longlong val,char *dst,int radix);
  203. #if (!defined(HAVE_STRTOULL) || defined(HAVE_mit_thread)) || defined(NO_STRTOLL_PROTO)
  204. extern longlong strtoll(const char *str, char **ptr, int base);
  205. extern ulonglong strtoull(const char *str, char **ptr, int base);
  206. #endif
  207. #endif
  208. #endif
  209. #if defined(__cplusplus) && !defined(OS2)
  210. }
  211. #endif
  212. #endif