uchar.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* Copyright (C) 2011-2020 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, see
  13. <https://www.gnu.org/licenses/>. */
  14. /*
  15. * ISO C11 Standard: 7.28
  16. * Unicode utilities <uchar.h>
  17. */
  18. #ifndef _UCHAR_H
  19. #define _UCHAR_H 1
  20. #include <features.h>
  21. #define __need_size_t
  22. #include <stddef.h>
  23. #include <bits/types.h>
  24. #include <bits/types/mbstate_t.h>
  25. #ifndef __USE_ISOCXX11
  26. /* Define the 16-bit and 32-bit character types. */
  27. typedef __uint_least16_t char16_t;
  28. typedef __uint_least32_t char32_t;
  29. #endif
  30. __BEGIN_DECLS
  31. /* Write char16_t representation of multibyte character pointed
  32. to by S to PC16. */
  33. extern size_t mbrtoc16 (char16_t *__restrict __pc16,
  34. const char *__restrict __s, size_t __n,
  35. mbstate_t *__restrict __p) __THROW;
  36. /* Write multibyte representation of char16_t C16 to S. */
  37. extern size_t c16rtomb (char *__restrict __s, char16_t __c16,
  38. mbstate_t *__restrict __ps) __THROW;
  39. /* Write char32_t representation of multibyte character pointed
  40. to by S to PC32. */
  41. extern size_t mbrtoc32 (char32_t *__restrict __pc32,
  42. const char *__restrict __s, size_t __n,
  43. mbstate_t *__restrict __p) __THROW;
  44. /* Write multibyte representation of char32_t C32 to S. */
  45. extern size_t c32rtomb (char *__restrict __s, char32_t __c32,
  46. mbstate_t *__restrict __ps) __THROW;
  47. __END_DECLS
  48. #endif /* uchar.h */