diff --git a/Userland/Libraries/LibC/wctype.cpp b/Userland/Libraries/LibC/wctype.cpp index 7a68b7c389..550c435e84 100644 --- a/Userland/Libraries/LibC/wctype.cpp +++ b/Userland/Libraries/LibC/wctype.cpp @@ -21,4 +21,10 @@ int iswctype(wint_t, wctype_t) dbgln("FIXME: Implement iswctype()"); TODO(); } + +int iswprint(wint_t) +{ + dbgln("FIXME: Implement iswprint()"); + TODO(); +} } diff --git a/Userland/Libraries/LibC/wctype.h b/Userland/Libraries/LibC/wctype.h index 6d91f8cc71..e3f5784bed 100644 --- a/Userland/Libraries/LibC/wctype.h +++ b/Userland/Libraries/LibC/wctype.h @@ -12,5 +12,6 @@ __BEGIN_DECLS wctype_t wctype(const char* name); int iswctype(wint_t wc, wctype_t desc); +int iswprint(wint_t wc); __END_DECLS