Allow parsing L'\0'
commit298c360ab0d1583585ea0fdefb9f9c96aefc64fe
authorChristopher Li <sparse@chrisli.org>
Thu, 8 Apr 2010 21:05:29 +0000 (8 14:05 -0700)
committerChristopher Li <sparse@chrisli.org>
Thu, 8 Apr 2010 21:39:53 +0000 (8 14:39 -0700)
treebbdf526fd03331c66332e8a46b018b6b674d4bd9
parent703499e552b45542a328e3016868419d65143f2b
Allow parsing L'\0'

It is nasty that L'\0' start from an identifier letter. I try my best
not to slow down the hot path. The test is done inside get_one_identifier()
after the ident hash is built.  It look a little bit out of palace but
faster than testing 'L' before hand.

Signed-off-by: Christopher Li <sparse@chrisli.org>
expression.c
ident-list.h
pre-process.c
token.h
tokenize.c