aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRuss Cox <rsc@swtch.com>2009-09-13 17:46:46 -0400
committerRuss Cox <rsc@swtch.com>2009-09-13 17:46:46 -0400
commit9eec023b8012162a4dfd78adcb94dea9d5439395 (patch)
treef91111b39b3c6c45e22a21e2ca805845a4e0538f /include
parenta0583cf2560feff2dcfcccb52279569bcf27fa5e (diff)
downloadplan9port-9eec023b8012162a4dfd78adcb94dea9d5439395.tar.gz
plan9port-9eec023b8012162a4dfd78adcb94dea9d5439395.tar.bz2
plan9port-9eec023b8012162a4dfd78adcb94dea9d5439395.zip
libc.h: update comment for 32-bit Rune
http://codereview.appspot.com/116097
Diffstat (limited to 'include')
-rw-r--r--include/libc.h5
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,
};
*/