diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-04-09 10:24:31 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-04-09 10:24:31 +0000 |
commit | acda8279a233adec6479da7d1754a2e3829a9cc9 (patch) | |
tree | 40f8bfd52e3dc46922b96caa50b64be590581240 /libc/misc/locale/_locale.h | |
parent | f42223c82de5726d778266ba20496a4b075916ab (diff) |
Support ISblank properly
Diffstat (limited to 'libc/misc/locale/_locale.h')
-rw-r--r-- | libc/misc/locale/_locale.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/misc/locale/_locale.h b/libc/misc/locale/_locale.h index 139a862f9..75658cc2f 100644 --- a/libc/misc/locale/_locale.h +++ b/libc/misc/locale/_locale.h @@ -17,6 +17,7 @@ enum ISpunct = ISbit (5), /* 32 Punctuation. */ ISalpha = ISbit (6), /* 64 Alphabetic. */ ISxdigit = ISbit (7), /* 128 Hexnumeric. */ + ISblank = ISbit (8), /* 256 Blank. */ }; extern const unsigned char *_uc_collate_b; |