mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 20:28:11 +00:00
LibC: Add stub for iswprint
Without the declaration of iswprint libarchive will not compile.
This commit is contained in:
parent
bab83ecc95
commit
afb47d1741
2 changed files with 7 additions and 0 deletions
|
@ -21,4 +21,10 @@ int iswctype(wint_t, wctype_t)
|
|||
dbgln("FIXME: Implement iswctype()");
|
||||
TODO();
|
||||
}
|
||||
|
||||
int iswprint(wint_t)
|
||||
{
|
||||
dbgln("FIXME: Implement iswprint()");
|
||||
TODO();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue