Blob


1 /*
2 * stupid little program to pipe unicode chars through
3 * when converting to non-utf compilers.
4 */
5 #include <u.h>
6 #include <libc.h>
7 #include <bio.h>
9 Biobuf bin;
11 void
12 main(void)
13 {
14 int c;
16 Binit(&bin, 0, OREAD);
17 while((c = Bgetrune(&bin)) >= 0)
18 print("0x%ux\n", c);
19 exits(0);
20 }