test.c (1849B) download
1/* Copyright (c) 2002-2006 Lucent Technologies; see LICENSE */
2/* Copyright (c) 2004 Google Inc.; see LICENSE */
3
4#include "fmt.h"
5#include "fmtdef.h"
6#include "plan9.h"
7
8#include <stdarg.h>
9#include <stdio.h>
10#include <utf.h>
11
12int main(int argc, char* argv[]) {
13 quotefmtinstall();
14 print("hello world\n");
15 print("x: %x\n", 0x87654321);
16 print("u: %u\n", 0x87654321);
17 print("d: %d\n", 0x87654321);
18 print("s: %s\n", "hi there");
19 print("q: %q\n", "hi i'm here");
20 print("c: %c\n", '!');
21 print("g: %g %g %g\n", 3.14159, 3.14159e10, 3.14159e-10);
22 print("e: %e %e %e\n", 3.14159, 3.14159e10, 3.14159e-10);
23 print("f: %f %f %f\n", 3.14159, 3.14159e10, 3.14159e-10);
24 print("smiley: %C\n", (Rune) 0x263a);
25 print("%g %.18g\n", 2e25, 2e25);
26 print("%2.18g\n", 1.0);
27 print("%2.18f\n", 1.0);
28 print("%f\n", 3.1415927 / 4);
29 print("%d\n", 23);
30 print("%i\n", 23);
31 print("%0.10d\n", 12345);
32
33 /* test %4$d formats */
34 print("%3$d %4$06d %2$d %1$d\n", 444, 333, 111, 222);
35 print("%3$d %4$06d %2$d %1$d\n", 444, 333, 111, 222);
36 print("%3$d %4$*5$06d %2$d %1$d\n", 444, 333, 111, 222, 20);
37 print("%3$hd %4$*5$06d %2$d %1$d\n", 444, 333, (short) 111, 222, 20);
38 print("%3$lld %4$*5$06d %2$d %1$d\n", 444, 333, 111LL, 222, 20);
39
40 /* test %'d formats */
41 print("%'d %'d %'d\n", 1, 2222, 33333333);
42 print("%'019d\n", 0);
43 print("%08d %08d %08d\n", 1, 2222, 33333333);
44 print("%'08d %'08d %'08d\n", 1, 2222, 33333333);
45 print("%'x %'X %'b\n", 0x11111111, 0xabcd1234, 12345);
46 print("%'lld %'lld %'lld\n", 1LL, 222222222LL, 3333333333333LL);
47 print("%019lld %019lld %019lld\n", 1LL, 222222222LL, 3333333333333LL);
48 print("%'019lld %'019lld %'019lld\n", 1LL, 222222222LL, 3333333333333LL);
49 print("%'020lld %'020lld %'020lld\n", 1LL, 222222222LL, 3333333333333LL);
50 print("%'llx %'llX %'llb\n", 0x111111111111LL, 0xabcd12345678LL, 112342345LL);
51 return 0;
52}