(root)/
glibc-2.38/
stdio-common/
scanf2.c
       1  #include <stdio.h>
       2  #include <stdlib.h>
       3  
       4  int
       5  main(int argc, char *argv[])
       6  {
       7      int point, x, y;
       8  
       9      point = x = y = -1;
      10      sscanf("0x10 10", "%x %x", &x, &y);
      11      printf("%d %d\n", x, y);
      12      if (x != 0x10 || y != 0x10)
      13        abort ();
      14      point = x = y = -1;
      15      sscanf("P012349876", "P%1d%4d%4d", &point, &x, &y);
      16      printf("%d %d %d\n", point, x, y);
      17      if (point != 0 || x != 1234 || y != 9876)
      18        abort ();
      19      point = x = y = -1;
      20      sscanf("P112349876", "P%1d%4d%4d", &point, &x, &y);
      21      printf("%d %d %d\n", point, x, y);
      22      if (point != 1 || x != 1234 || y != 9876)
      23        abort ();
      24    return 0;
      25  }