wctype.h 238 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2021, the SerenityOS developers
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <wchar.h>
  8. __BEGIN_DECLS
  9. wctype_t wctype(const char* name);
  10. int iswctype(wint_t wc, wctype_t desc);
  11. __END_DECLS