diff options
Diffstat (limited to 'contrib/libg++/libio/tests/tstdiomisc.c')
-rw-r--r-- | contrib/libg++/libio/tests/tstdiomisc.c | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/contrib/libg++/libio/tests/tstdiomisc.c b/contrib/libg++/libio/tests/tstdiomisc.c deleted file mode 100644 index 1c15b75a7095..000000000000 --- a/contrib/libg++/libio/tests/tstdiomisc.c +++ /dev/null @@ -1,43 +0,0 @@ -#ifndef STDIO_H -#define STDIO_H <iostdio.h> -#endif -#include STDIO_H - -void -t1 () -{ - int n = -1; - sscanf ("abc ", "abc %n", &n); - printf ("t1: count=%d\n", n); -} - -void -t2 () -{ - int n; - long N; - int retval; -#define SCAN(INPUT, FORMAT, VAR) \ - VAR = -1; \ - retval = sscanf (INPUT, FORMAT, &VAR); \ - printf ("sscanf (\"%s\", \"%s\", &x) => %d, x = %ld\n", \ - INPUT, FORMAT, retval, VAR); - - SCAN ("12345", "%ld", N); - SCAN ("12345", "%llllld", N); - SCAN ("12345", "%LLLLLd", N); - SCAN ("test ", "%*s%n", n); - SCAN ("test ", "%2*s%n", n); - SCAN ("12 ", "%l2d", n); - SCAN ("12 ", "%2ld", N); -} - -int -main () -{ - t1 (); - t2 (); - - fflush (stdout); - return 0; -} |