m_string.h
上传用户:jmzj888
上传日期:2007-01-02
资源大小:220k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 1996  TCX DataKonsult AB & Monty Program KB & Detron HB
  2.    For a more info consult the file COPYRIGHT distributed with this file */
  3. /* There may be prolems include all of theese. Try to test in
  4.    configure with ones are needed? */
  5. /*  This is needed for the definitions of strchr... on solaris */
  6. #ifndef _m_string_h
  7. #define _m_string_h
  8. #if defined(HAVE_STRING_H)
  9. #include <string.h>
  10. #endif
  11. /*  This is needed for the definitions of bzero... on solaris */
  12. #if defined(HAVE_STRINGS_H) && !defined(HAVE_mit_thread)
  13. #include <strings.h>
  14. #endif
  15. /*  This is needed for the definitions of memcpy... on solaris */
  16. #if defined(HAVE_MEMORY_H) && !defined(__cplusplus)
  17. #include <memory.h>
  18. #endif
  19. #if !defined(HAVE_MEMCPY)
  20. # define memcpy(d, s, n) bcopy ((s), (d), (n))
  21. # define memset(A,C,B) bfill((A),(B),(C))
  22. # define memmove(d, s, n) bmove ((s), (d), (n))
  23. #else
  24. # define bcopy(s, d, n) memcpy((d), (s), (n))
  25. # define bcmp(A,B,C) memcmp((A),(B),(C))
  26. # define bfill(A,B,C) memset((A),(C),(B))
  27. # define bzero(A,B) memset((A),0,(B))
  28. # define bmove_allign(A,B,C) memcpy((A),(B),(C))
  29. #ifdef HAVE_MEMMOVE
  30. # define bmove(d, s, n) memmove((d), (s), (n))
  31. #else
  32. # define memmove(d, s, n) bmove((d), (s), (n)) /* our bmove */
  33. #endif
  34. #endif
  35. #ifdef __cplusplus
  36. extern "C" {
  37. #endif
  38. extern char NEAR _dig_vec[]; /* Declared in int2str() */
  39. #ifdef BAD_STRING_COMPILER
  40. #define strmov(A,B)  (memccpy(A,B,0,INT_MAX)-1)
  41. #else
  42. #define strmov_overlapp(A,B) strmov(A,B)
  43. #define strmake_overlapp(A,B,C) strmake(A,B,C)
  44. #endif
  45. #ifdef MSDOS
  46. #undef bmove_allign
  47. #define bmove512(A,B,C) bmove_allign(A,B,C)
  48. #define my_itoa(A,B,C) itoa(A,B,C)
  49. #define my_ltoa(A,B,C) ltoa(A,B,C)
  50. extern void bmove_allign(gptr dst,const gptr src,uint len);
  51. #endif
  52. #if (!defined(USE_BMOVE512) || defined(HAVE_purify)) && !defined(bmove512)
  53. #define bmove512(A,B,C) memcpy(A,B,C)
  54. #endif
  55. /* Prototypes for string functions */
  56. #if !defined(bfill) && !defined(HAVE_BFILL)
  57. extern void bfill(gptr dst,uint len,pchar fill);
  58. #endif
  59. #if !defined(bzero) && !defined(HAVE_BZERO)
  60. extern void bzero(gptr dst,uint len);
  61. #endif
  62. #if !defined(bcmp) && !defined(HAVE_BCMP)
  63. extern int bcmp(const char *s1,const char *s2,uint len);
  64. #ifdef HAVE_purify
  65. extern int my_bcmp(const char *s1,const char *s2,uint len);
  66. #define bcmp(A,B,C) my_bcmp((A),(B),(C))
  67. #endif
  68. #endif
  69. #ifndef bmove512
  70. extern void bmove512(gptr dst,const gptr src,uint len);
  71. #endif
  72. #if !defined(HAVE_BMOVE) && !defined(bmove)
  73. extern void bmove(gptr dst,const char *src,uint len);
  74. #endif
  75. extern void bmove_upp(char *dst,const char *src,uint len);
  76. extern void bchange(char *dst,uint old_len,const char *src,
  77.      uint new_len,uint tot_len);
  78. extern void strappend(char *s,uint len,pchar fill);
  79. extern char *strend(const char *s);
  80. extern char *strcend(const char *, pchar);
  81. extern char *strfield(char *src,int fields,int chars,int blanks,
  82.    int tabch);
  83. extern char *strfill(my_string s,uint len,pchar fill);
  84. extern uint strinstr(const char *str,const char *search);
  85. extern char *strkey(char *dst,char *head,char *tail,char *flags);
  86. extern char *strmake(char *dst,const char *src,uint length);
  87. #ifndef strmake_overlapp
  88. extern char *strmake_overlapp(char *dst,const char *src, uint length);
  89. #endif
  90. #ifndef strmov
  91. extern char *strmov(char *dst,const char *src);
  92. #endif
  93. extern uint strnlen(const char *s,uint n);
  94. extern char *strnmov(char *dst,const char *src,uint n);
  95. extern char *strsuff(const char *src,const char *suffix);
  96. extern char *strcont(const char *src,const char *set);
  97. extern char *strxcat _VARARGS((char *dst,const char *src, ...));
  98. extern char *strxmov _VARARGS((char *dst,const char *src, ...));
  99. extern char *strxcpy _VARARGS((char *dst,const char *src, ...));
  100. extern char *strxncat _VARARGS((char *dst,uint len, const char *src, ...));
  101. extern char *strxnmov _VARARGS((char *dst,uint len, const char *src, ...));
  102. extern char *strxncpy _VARARGS((char *dst,uint len, const char *src, ...));
  103. /* Prototypes of normal stringfunctions (with may ours) */
  104. #ifdef WANT_STRING_PROTOTYPES
  105. extern char *strcat(char *, const char *);
  106. extern char *strchr(const char *, pchar);
  107. extern char *strrchr(const char *, pchar);
  108. extern char *strcpy(char *, const char *);
  109. extern int strcmp(const char *, const char *);
  110. #ifndef __GNUC__
  111. extern size_t strlen(const char *);
  112. #endif
  113. #endif
  114. #if !defined(__cplusplus) && !defined(_WINDOWS)
  115. extern char *strpbrk(const char *, const char *);
  116. extern char *strstr(const char *, const char *);
  117. #endif
  118. extern qsort_cmp get_ptr_compare(uint);
  119. extern int is_prefix(const char *, const char *);
  120. /* Conversion rutins */
  121. #ifdef USE_MY_ITOA
  122. extern char *my_itoa(int val,char *dst,int radix);
  123. extern char *my_ltoa(long val,char *dst,int radix);
  124. #endif
  125. #ifndef HAVE_STRTOUL
  126. extern long strtol(const char *str, char **ptr, int base);
  127. extern ulong strtoul(const char *str, char **ptr, int base);
  128. #endif
  129. extern char *int2str(long val,char *dst,int radix);
  130. extern char *str2int(const char *src,int radix,long lower,long upper,
  131.  long *val);
  132. #if SIZEOF_LONG == SIZEOF_LONG_LONG
  133. #define longlong2str(A,B,C) int2str((A),(B),(C))
  134. #define strtoll(A,B,C) strtol((A),(B),(C))
  135. #define strtoull(A,B,C) strtoul((A),(B),(C))
  136. #ifndef HAVE_STRTOULL
  137. #define HAVE_STRTOULL
  138. #endif
  139. #else
  140. #ifdef HAVE_LONG_LONG
  141. extern char *longlong2str(longlong val,char *dst,int radix);
  142. #if !defined(HAVE_STRTOULL) || defined(HAVE_mit_thread)
  143. extern longlong strtoll(const char *str, char **ptr, int base);
  144. extern ulonglong strtoull(const char *str, char **ptr, int base);
  145. #endif
  146. #endif
  147. #endif
  148. #ifdef __cplusplus
  149. }
  150. #endif
  151. #endif