10 sscanf("0x10 10", "%x %x", &x
, &y
);
11 sprintf(buf
, "%d %d", x
, y
);
13 status
|= strcmp (buf
, "16 16");
14 sscanf("P012349876", "P%1d%4d%4d", &point
, &x
, &y
);
15 sprintf(buf
, "%d %d %d", point
, x
, y
);
16 status
|= strcmp (buf
, "0 1234 9876");
18 sscanf("P112349876", "P%1d%4d%4d", &point
, &x
, &y
);
19 sprintf(buf
, "%d %d %d", point
, x
, y
);
20 status
|= strcmp (buf
, "1 1234 9876");
23 puts (status
? "Test failed" : "Test passed");