Welcome to mirror list, hosted at ThFree Co, Russian Federation.

iswgraph_l.c « ctype « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8a5866e954e322fb43739362982a601200da76a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Modified (m) 2017 Thomas Wolff: revise Unicode and locale/wchar handling */
#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 != -1
      && 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 */
}