1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
/*
Copyright (c) 2016 Corinna Vinschen <corinna@vinschen.de>
Modified (m) 2017 Thomas Wolff: revise Unicode and locale/wchar handling
*/
/* Modified (m) 2017 Thomas Wolff: revise Unicode and locale/wchar handling */
#define _DEFAULT_SOURCE
#include <_ansi.h>
#include <wctype.h>
#include "local.h"
#include "categories.h"
int
iswgraph_l (wint_t c, struct __locale_t *locale)
{
#ifdef _MB_CAPABLE
//return iswprint (c, locale) && !iswspace (c, locale);
c = _jp2uc_l (c, locale);
enum category cat = category (c);
return cat != CAT_error
&& cat != CAT_Cc && cat != CAT_Cf
&& cat != CAT_Cs // Surrogate
&& cat != CAT_Zs
&& cat != CAT_Zl && cat != CAT_Zp // Line/Paragraph Separator
;
#else
return iswprint_l (c, locale) && !iswspace_l (c, locale);
#endif /* _MB_CAPABLE */
}
|