summaryrefslogtreecommitdiff
path: root/stdio-common/scanf6.c
blob: 36055aa82e36bdcc4ef871d25a324323e74e8d86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <stdlib.h>

main ()
{
  int n = -1;
  char c = '!';
  int ret;

  ret = sscanf ("0x", "%i%c", &n, &c);
  printf ("ret: %d, n: %d, c: %c\n", ret, n, c);
  if (ret != 2 || n != 0 || c != 'x')
    abort ();
  return 0;
}