diff options
author | rsc <devnull@localhost> | 2003-11-23 18:04:47 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2003-11-23 18:04:47 +0000 |
commit | bc7cb1a15a67c859c8c71c4b52bb35fe9425a63d (patch) | |
tree | 8ca0fe4e2418e6aa18dc74a236c577a719f6c6ed /src/cmd/unutf.c | |
parent | f08fdedcee12c06e3ce9ac9bec363915978e8289 (diff) | |
download | plan9port-bc7cb1a15a67c859c8c71c4b52bb35fe9425a63d.tar.gz plan9port-bc7cb1a15a67c859c8c71c4b52bb35fe9425a63d.tar.bz2 plan9port-bc7cb1a15a67c859c8c71c4b52bb35fe9425a63d.zip |
new utilities.
the .C files compile but are renamed to avoid building automatically.
Diffstat (limited to 'src/cmd/unutf.c')
-rw-r--r-- | src/cmd/unutf.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/cmd/unutf.c b/src/cmd/unutf.c new file mode 100644 index 00000000..c1617315 --- /dev/null +++ b/src/cmd/unutf.c @@ -0,0 +1,16 @@ +#include <u.h> +#include <libc.h> +#include <bio.h> + +Biobuf bin; + +void +main(void) +{ + int c; + + Binit(&bin, 0, OREAD); + while((c = Bgetrune(&bin)) >= 0) + print("0x%ux\n", c); + exits(0); +} |