wctype.cpp 356 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2021, the SerenityOS developers
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <AK/Format.h>
  7. #include <assert.h>
  8. #include <wctype.h>
  9. extern "C" {
  10. wctype_t wctype(const char*)
  11. {
  12. dbgln("FIXME: Implement wctype()");
  13. TODO();
  14. }
  15. int iswctype(wint_t, wctype_t)
  16. {
  17. dbgln("FIXME: Implement iswctype()");
  18. TODO();
  19. }
  20. }