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

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