diff options
| author | Russ Cox <rsc@swtch.com> | 2009-09-13 17:46:46 -0400 |
|---|---|---|
| committer | Russ Cox <rsc@swtch.com> | 2009-09-13 17:46:46 -0400 |
| commit | 9eec023b8012162a4dfd78adcb94dea9d5439395 (patch) | |
| tree | f91111b39b3c6c45e22a21e2ca805845a4e0538f /include | |
| parent | a0583cf2560feff2dcfcccb52279569bcf27fa5e (diff) | |
libc.h: update comment for 32-bit Rune
http://codereview.appspot.com/116097
Diffstat (limited to 'include')
| -rw-r--r-- | include/libc.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/libc.h b/include/libc.h index af4422d1..d16b4043 100644 --- a/include/libc.h +++ b/include/libc.h @@ -70,10 +70,11 @@ extern int tokenize(char*, char**, int); /* enum { - UTFmax = 3, + UTFmax = 4, Runesync = 0x80, Runeself = 0x80, - Runeerror = 0x80, + Runeerror = 0xFFFD, + Runemax = 0x10FFFF, }; */ |