1
0

wchar.h 444 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (c) 2006-2022, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2022-06-07 Meco Man The first version
  9. */
  10. #ifndef __POSIX_WCHAR_H__
  11. #define __POSIX_WCHAR_H__
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #include <wchar.h>
  16. int wcwidth(wchar_t);
  17. int wcswidth(const wchar_t*, size_t);
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21. #endif /* __POSIX_WCHAR_H__ */