wchar.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. /*-
  2. * Copyright (c)1999 Citrus Project,
  3. * All rights reserved.
  4. *
  5. * Copyright (c) 2014-2014 Texas Instruments Incorporated
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  17. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  20. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  21. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  22. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  23. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  24. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  25. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  26. * SUCH DAMAGE.
  27. *
  28. * $FreeBSD: release/10.0.0/include/wchar.h 247411 2013-02-27 19:50:46Z jhb $
  29. */
  30. /*-
  31. * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
  32. * All rights reserved.
  33. *
  34. * This code is derived from software contributed to The NetBSD Foundation
  35. * by Julian Coleman.
  36. *
  37. * Redistribution and use in source and binary forms, with or without
  38. * modification, are permitted provided that the following conditions
  39. * are met:
  40. * 1. Redistributions of source code must retain the above copyright
  41. * notice, this list of conditions and the following disclaimer.
  42. * 2. Redistributions in binary form must reproduce the above copyright
  43. * notice, this list of conditions and the following disclaimer in the
  44. * documentation and/or other materials provided with the distribution.
  45. *
  46. * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
  47. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  48. * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  49. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
  50. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  51. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  52. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  53. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  54. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  55. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  56. * POSSIBILITY OF SUCH DAMAGE.
  57. *
  58. * $NetBSD: wchar.h,v 1.8 2000/12/22 05:31:42 itojun Exp $
  59. */
  60. #ifndef _WCHAR_H_
  61. #define _WCHAR_H_
  62. #include <linkage.h>
  63. #include <stdio.h>
  64. #include <stddef.h>
  65. #if defined(__cplusplus)
  66. extern "C" namespace std {
  67. #endif
  68. #ifndef WCHAR_MAX
  69. # if !defined(__TI_WCHAR_T_BITS__) || __TI_WCHAR_T_BITS__ == 16
  70. # define WCHAR_MAX 0xffffu
  71. # else
  72. # define WCHAR_MAX 0xffffffffu
  73. # endif
  74. #endif
  75. #ifndef WCHAR_MIN
  76. # define WCHAR_MIN 0
  77. #endif
  78. #ifndef WEOF
  79. #define WEOF ((wint_t)-1)
  80. #endif
  81. #ifndef _MBSTATET
  82. #define _MBSTATET
  83. typedef int _Mbstatet;
  84. #endif /* _MBSTATET */
  85. typedef _Mbstatet mbstate_t;
  86. struct tm;
  87. #ifndef _WINTT
  88. #define _WINTT
  89. #if defined(__TMS320C6X__) && !defined(__C6X_MIGRATION__) && defined(__TI_EABI__)
  90. typedef unsigned int wint_t;
  91. #else
  92. typedef int wint_t;
  93. #endif
  94. #endif
  95. _CODE_ACCESS wint_t btowc (int);
  96. _CODE_ACCESS wint_t fgetwc (FILE *);
  97. _CODE_ACCESS wint_t fputwc (wchar_t, FILE *);
  98. _CODE_ACCESS int fwide (FILE *, int);
  99. _CODE_ACCESS size_t mbrtowc (wchar_t * __restrict,
  100. const char * __restrict,
  101. size_t,
  102. mbstate_t * __restrict);
  103. _CODE_ACCESS wint_t ungetwc (wint_t, FILE *);
  104. _CODE_ACCESS size_t wcrtomb (char * __restrict,
  105. wchar_t,
  106. mbstate_t * __restrict);
  107. _CODE_ACCESS int wcscmp (const wchar_t *, const wchar_t *);
  108. _CODE_ACCESS size_t wcslen (const wchar_t *);
  109. _CODE_ACCESS int wcsncmp (const wchar_t *, const wchar_t*, size_t);
  110. _CODE_ACCESS wchar_t *wcsncpy (wchar_t * __restrict,
  111. const wchar_t * __restrict,
  112. size_t);
  113. _CODE_ACCESS int wctob (wint_t);
  114. _CODE_ACCESS wchar_t *wmemchr (const wchar_t *, wchar_t, size_t);
  115. _CODE_ACCESS int wmemcmp (const wchar_t *, const wchar_t*, size_t);
  116. _CODE_ACCESS wchar_t *wmemcpy (wchar_t * __restrict,
  117. const wchar_t * __restrict,
  118. size_t);
  119. _CODE_ACCESS wchar_t *wmemmove(wchar_t *, const wchar_t *, size_t);
  120. _CODE_ACCESS wchar_t *wmemset (wchar_t *, wchar_t, size_t);
  121. #define getwc(fp) fgetwc(fp)
  122. #define getwchar() fgetwc(__stdinp)
  123. #define putwc(wc, fp) fputwc(wc, fp)
  124. #define putwchar(wc) fputwc(wc, __stdoutp)
  125. #if defined(__cplusplus)
  126. }
  127. #endif
  128. #if defined (__cplusplus)
  129. using std::mbstate_t;
  130. using std::wint_t;
  131. #if !defined(_CPP_STYLE_HEADER)
  132. using std::tm;
  133. using std::btowc;
  134. using std::fgetwc;
  135. using std::fputwc;
  136. using std::fwide;
  137. using std::mbrtowc;
  138. using std::ungetwc;
  139. using std::wcrtomb;
  140. using std::wcscmp;
  141. using std::wcslen;
  142. using std::wcsncmp;
  143. using std::wcsncpy;
  144. using std::wctob;
  145. using std::wmemchr;
  146. using std::wmemcmp;
  147. using std::wmemcpy;
  148. using std::wmemmove;
  149. using std::wmemset;
  150. #endif
  151. #endif /* __cplusplus */
  152. #endif /* !_WCHAR_H_ */