repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git]
/
sdcc
/
support
/
valdiag
/
tests
/
universal.c
blob
855db75d8fb064b86983bb4cf82223d1e8b3cfbe
1
/* universal.c
2
3
Test diagnostics for universal character names.
4
*/
5
6
#ifdef TEST1
7
// ':' via UCN in string
8
const char
*
string
=
u8
"
\u003a
"
;
/* WARNING */
9
#endif
10
11
#ifdef TEST2
12
// € via UCN in string
13
const char
*
string
=
u8
"
\u20ac
"
;
14
#endif
15