home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / include / m_string.h < prev    next >
C/C++ Source or Header  |  2000-10-23  |  7KB  |  242 lines

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