a66067befe
* stdio-common/scanf[1-9].c: New files. Bug tests from hjl. Wed Jan 24 03:22:07 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu> * stdio-common/Makefile (tests): Add scanf[1-9]. * stdio-common/scanf[1-9].c: New files. Bug tests from hjl.
16 lines
246 B
C
16 lines
246 B
C
#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;
|
|
}
|