commit 9eec023b8012162a4dfd78adcb94dea9d5439395
parent a0583cf2560feff2dcfcccb52279569bcf27fa5e
Author: Russ Cox <rsc@swtch.com>
Date: Sun, 13 Sep 2009 17:46:46 -0400
libc.h: update comment for 32-bit Rune
http://codereview.appspot.com/116097
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git 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,
};
*/