123456789101112131415161718192021222324 |
- /*
- * Copyright (c) 2021, the SerenityOS developers
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <AK/Format.h>
- #include <assert.h>
- #include <wctype.h>
- extern "C" {
- wctype_t wctype(const char*)
- {
- dbgln("FIXME: Implement wctype()");
- TODO();
- }
- int iswctype(wint_t, wctype_t)
- {
- dbgln("FIXME: Implement iswctype()");
- TODO();
- }
- }
|