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 memcmp(A,B,C) bcmp((A),(B),(C))
  22. # define memset(A,C,B) bfill((A),(B),(C))
  23. # define memmove(d, s, n) bmove ((s), (d), (n))
  24. #else
  25. # define bcopy(s, d, n) memcpy((d), (s), (n))
  26. # define bcmp(A,B,C) memcmp((A),(B),(C))
  27. # define bfill(A,B,C) memset((A),(C),(B))
  28. # define bzero(A,B) memset((A),0,(B))
  29. # define bmove_allign(A,B,C) memcpy((A),(B),(C))
  30. #ifdef HAVE_MEMMOVE
  31. # define bmove(d, s, n) memmove((d), (s), (n))
  32. #else
  33. # define memmove(d, s, n) bmove((d), (s), (n)) /* our bmove */
  34. #endif
  35. #endif
  36. #ifdef __cplusplus
  37. extern "C" {
  38. #endif
  39. extern char NEAR _dig_vec[]; /* Declared in int2str() */
  40. #ifdef BAD_STRING_COMPILER
  41. #define strmov(A,B)  (memccpy(A,B,0,INT_MAX)-1)
  42. #else
  43. #define strmov_overlapp(A,B) strmov(A,B)
  44. #define strmake_overlapp(A,B,C) strmake(A,B,C)
  45. #endif
  46. #ifdef MSDOS
  47. #undef bmove_allign
  48. #define bmove512(A,B,C) bmove_allign(A,B,C)
  49. #define my_itoa(A,B,C) itoa(A,B,C)
  50. #define my_ltoa(A,B,C) ltoa(A,B,C)
  51. extern void bmove_allign(gptr dst,const gptr src,uint len);
  52. #endif
  53. #if (!defined(USE_BMOVE512) || defined(HAVE_purify)) && !defined(bmove512)
  54. #define bmove512(A,B,C) memcpy(A,B,C)
  55. #endif
  56. /* Prototypes for string functions */
  57. #if !defined(bfill) && !defined(HAVE_BFILL)
  58. extern void bfill(gptr dst,uint len,pchar fill);
  59. #endif
  60. #if !defined(bzero) && !defined(HAVE_BZERO)
  61. extern void bzero(gptr dst,uint len);
  62. #endif
  63. #if !defined(bcmp) && !defined(HAVE_BCMP)
  64. extern int bcmp(const char *s1,const char *s2,uint len);
  65. #ifdef HAVE_purify
  66. extern int my_bcmp(const char *s1,const char *s2,uint len);
  67. #define bcmp(A,B,C) my_bcmp((A),(B),(C))
  68. #endif
  69. #endif
  70. #ifndef bmove512
  71. extern void bmove512(gptr dst,const gptr src,uint len);
  72. #endif
  73. #if !defined(HAVE_BMOVE) && !defined(bmove)
  74. extern void bmove(gptr dst,const char *src,uint len);
  75. #endif
  76. extern void bmove_upp(char *dst,const char *src,uint len);
  77. extern void bchange(char *dst,uint old_len,const char *src,
  78.      uint new_len,uint tot_len);
  79. extern void strappend(char *s,uint len,pchar fill);
  80. extern char *strend(const char *s);
  81. extern char *strcend(const char *, pchar);
  82. extern char *strfield(char *src,int fields,int chars,int blanks,
  83.    int tabch);
  84. extern char *strfill(char *s,uint len,pchar fill);
  85. extern uint strinstr(const char *str,const char *search);
  86. extern char *strkey(char *dst,char *head,char *tail,char *flags);
  87. extern char *strmake(char *dst,const char *src,uint length);
  88. #ifndef strmake_overlapp
  89. extern char *strmake_overlapp(char *dst,const char *src, uint length);
  90. #endif
  91. #ifndef strmov
  92. extern char *strmov(char *dst,const char *src);
  93. #endif
  94. extern uint strnlen(const char *s,uint n);
  95. extern char *strnmov(char *dst,const char *src,uint n);
  96. extern char *strsuff(const char *src,const char *suffix);
  97. extern char *strcont(const char *src,const char *set);
  98. extern char *strxcat _VARARGS((char *dst,const char *src, ...));
  99. extern char *strxmov _VARARGS((char *dst,const char *src, ...));
  100. extern char *strxcpy _VARARGS((char *dst,const char *src, ...));
  101. extern char *strxncat _VARARGS((char *dst,uint len, const char *src, ...));
  102. extern char *strxnmov _VARARGS((char *dst,uint len, const char *src, ...));
  103. extern char *strxncpy _VARARGS((char *dst,uint len, const char *src, ...));
  104. /* Prototypes of normal stringfunctions (with may ours) */
  105. #ifdef WANT_STRING_PROTOTYPES
  106. extern char *strcat(char *, const char *);
  107. extern char *strchr(const char *, pchar);
  108. extern char *strrchr(const char *, pchar);
  109. extern char *strcpy(char *, const char *);
  110. extern int strcmp(const char *, const char *);
  111. #ifndef __GNUC__
  112. extern size_t strlen(const char *);
  113. #endif
  114. #endif
  115. #if !defined(__cplusplus) && !defined(_WINDOWS)
  116. extern char *strpbrk(const char *, const char *);
  117. extern size_t strspn(const char *, const char *);
  118. extern char *strstr(const char *, const char *);
  119. #endif
  120. extern qsort_cmp get_ptr_compare(uint);
  121. extern int is_prefix(const char *, const char *);
  122. /* Conversion rutins */
  123. #ifdef USE_MY_ITOA
  124. extern char *my_itoa(int val,char *dst,int radix);
  125. extern char *my_ltoa(long val,char *dst,int radix);
  126. #endif
  127. #ifndef HAVE_STRTOUL
  128. extern long strtol(const char *str, char **ptr, int base);
  129. extern ulong strtoul(const char *str, char **ptr, int base);
  130. #endif
  131. extern char *int2str(long val,char *dst,int radix);
  132. extern char *str2int(const char *src,int radix,long lower,long upper,
  133.  long *val);
  134. #ifdef HAVE_LONG_LONG
  135. extern char *longlong2str(longlong val,char *dst,int radix);
  136. #if !defined(HAVE_STRTOULL) || defined(HAVE_mit_thread)
  137. extern longlong strtoll(const char *str, char **ptr, int base);
  138. extern ulonglong strtoull(const char *str, char **ptr, int base);
  139. #endif
  140. #endif
  141. #ifdef __cplusplus
  142. }
  143. #endif
  144. #endif