home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 January / Chip_1997-01_cd.bin / ms95 / disk22 / dir08 / f012100.re_ / f012100.re
Text File  |  1996-04-02  |  3KB  |  154 lines

  1. /*----------------------------------------------------------------------+
  2. |                                    |
  3. |  Copyright (1995) Bentley Systems, Inc., All rights reserved.        |
  4. |                                    |
  5. |  "MicroStation", "MDL", and "MicroCSL" are trademarks of Bentley    |
  6. |  Systems, Inc.                            |
  7. |                                    |
  8. |  Limited permission is hereby granted to reproduce and modify this    |
  9. |  copyrighted material provided that the resulting code is used only     |
  10. |  in conjunction with Bentley Systems products under the terms of the    |
  11. |  license agreement provided therein, and that this notice is retained    |
  12. |  in its entirety in any such reproduction or modification.        |
  13. |                                    |
  14. +----------------------------------------------------------------------*/
  15. /*----------------------------------------------------------------------+
  16. |                                    |
  17. |   mbstr.fdf  -- declares MicroStation multi-byte string functions.    |                                    |
  18. |                                    |
  19. |   $Workfile:   msmbstr.fdf  $
  20. |   $Revision:   6.2  $
  21. |          $Date:   04 Oct 1995 12:54:54  $
  22. |                                    |
  23. +----------------------------------------------------------------------*/
  24. /*-----------------------------------------------------------------------
  25.  
  26.     On some platforms, dloadlib contains macros that replace many of the
  27.     standard C string functions with MicroStation multi-byte functions.
  28.     These multi-byte functions are declared in this file.
  29.  
  30. -----------------------------------------------------------------------*/
  31. #if !defined (__mbstrFDF__)
  32. #define       __mbstrFDF__
  33.  
  34. /*----------------------------------------------------------------------+
  35. |                                    |
  36. |   Header File Dependencies                        |
  37. |                                    |
  38. +----------------------------------------------------------------------*/
  39.  
  40. /*======================================================================+
  41. |                                    |
  42. |   Major Public Code Section                        |
  43. |                                    |
  44. +======================================================================*/
  45. char *mdlstrchr
  46. (
  47. char *mbStr,
  48. int   c
  49. );
  50.  
  51. int mdlstrcmpi 
  52. (
  53. char *mbStr1,
  54. char *mbStr2
  55. );
  56.  
  57. int mdlstrcspn
  58. (
  59. char *mbStr,
  60. char *mbSet
  61. );
  62.  
  63. char *mdlstrlwr 
  64. (
  65. char *mbStr
  66. );
  67.  
  68. char *mdlstrpbrk
  69. (
  70. char *mbStr,
  71. char *mbSet
  72. );
  73.  
  74. char *mdlstrrchr
  75. (
  76. char *mbStr,
  77. int   c
  78. );
  79.  
  80. int mdlstrspn
  81. (
  82. char *mbStr,
  83. char *mbSet
  84. );
  85.  
  86. char *mdlstrtok 
  87. (
  88. char *mbStr,
  89. char *mbSet
  90. );
  91.  
  92. char *mdlstrupr 
  93. (
  94. char *mbStr
  95. );
  96.  
  97. int mdlisalnum
  98. (
  99. int c
  100. );
  101.  
  102. int mdlisalpha
  103. (
  104. int c
  105. );
  106.  
  107. int mdliscntrl
  108. (
  109. int c
  110. );
  111.  
  112. int mdlisdigit
  113. (
  114. int c
  115. );
  116.  
  117. int mdlisgraph
  118. (
  119. int c
  120. );
  121.  
  122. int mdlislower
  123. (
  124. int c
  125. );
  126.  
  127. int mdlisprint
  128. (
  129. int c
  130. );
  131.  
  132. int mdlispunct
  133. (
  134. int c
  135. );
  136.  
  137. int mdlisspace
  138. (
  139. int c
  140. );
  141.  
  142. int mdlisupper
  143. (
  144. int c
  145. );
  146.  
  147. int mdlisxdigit
  148. (
  149. int c
  150. );
  151.  
  152.  
  153. #endif    /* !defined (__mbstrFDF__) */
  154.