glibc/stdio-common/scanf7.c

23 lines
379 B
C
Raw Normal View History

#include <stdio.h>
#include <stdlib.h>
main ()
{
long long int n;
int ret;
n = -1;
ret = sscanf ("1000", "%lld", &n);
printf ("%%lld: ret: %d, n: %Ld, c: %c\n", ret, n);
if (ret != 1 || n != 1000L)
abort ();
n = -2;
ret = sscanf ("1000", "%llld", &n);
printf ("%%llld: ret: %d, n: %Ld\n", ret, n);
if (ret != 0 || n >= 0L)
abort ();
return 0;
}