diff options
author | Jakob Kaivo <jkk@ung.org> | 2024-06-03 13:56:25 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2024-06-03 13:56:25 -0400 |
commit | a686d047d79bdfc37c096a4fa350c37e4ccf3cf5 (patch) | |
tree | ca631b9095454a239211b6f676bdd3e0cb102156 /src/locale/_locale.h | |
parent | c575f269ed4a04f89d610b423cc43ce7bd6f008b (diff) |
add LC_CTYPE epoch and use separate CT_ categories and CTM_ masks to support detecting change of LC_CTYPE between calls to wctype()/iswctype() and wctrans()/towctrans()
Diffstat (limited to 'src/locale/_locale.h')
-rw-r--r-- | src/locale/_locale.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/locale/_locale.h b/src/locale/_locale.h index 41441456..b7867731 100644 --- a/src/locale/_locale.h +++ b/src/locale/_locale.h @@ -36,6 +36,7 @@ struct __locale_t { char all[UCHAR_MAX]; char ctype[UCHAR_MAX]; + unsigned int ctype_epoch; struct { unsigned int ctattr[UCHAR_MAX + 1]; unsigned char ctoupper[UCHAR_MAX + 1]; |