2017-10-21 23:40:19 +00:00
|
|
|
/* Conformance Test 17.8.0.22: Verification of scanf, s format code */
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2022-10-17 22:50:42 +00:00
|
|
|
#include <string.h>
|
2017-10-21 23:40:19 +00:00
|
|
|
|
2022-10-17 22:50:42 +00:00
|
|
|
int main (void)
|
2017-10-21 23:40:19 +00:00
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
char string [50] = "hey, hey!";
|
|
|
|
FILE *f1;
|
|
|
|
|
|
|
|
|
|
|
|
/* Redirect standard input from a file */
|
|
|
|
|
|
|
|
f1 = fopen ("3/tmp", "wb+"); /* open input file for test */
|
|
|
|
if (f1 == NULL)
|
|
|
|
goto Fail1;
|
|
|
|
fprintf(f1, " oneLongWord ten_chars!andMore");
|
|
|
|
fclose(f1);
|
|
|
|
|
|
|
|
stdin = freopen ("3/tmp", "r", stdin);
|
|
|
|
if (stdin == NULL)
|
|
|
|
goto Fail1;
|
|
|
|
|
2022-10-17 22:50:42 +00:00
|
|
|
i = scanf ("%*s"); /* no assignment made */
|
2017-10-21 23:40:19 +00:00
|
|
|
if (i != 0)
|
|
|
|
goto Fail;
|
|
|
|
if (strcmp (string, "hey, hey!"))
|
|
|
|
goto Fail;
|
|
|
|
|
2022-10-17 22:50:42 +00:00
|
|
|
i = scanf ("%10s", string); /* test assignment to string */
|
|
|
|
if (i != 1)
|
2017-10-21 23:40:19 +00:00
|
|
|
goto Fail;
|
|
|
|
if (strcmp (string, "ten_chars!"))
|
|
|
|
goto Fail;
|
|
|
|
|
|
|
|
stdin = freopen (".CONSOLE", "r", stdin); /* reset stdin and quit */
|
|
|
|
if (stdin == NULL)
|
|
|
|
goto Fail1;
|
|
|
|
|
|
|
|
printf ("Passed Conformance Test 17.8.0.22\n");
|
2022-10-17 22:50:42 +00:00
|
|
|
return 0;
|
2017-10-21 23:40:19 +00:00
|
|
|
|
|
|
|
Fail:
|
|
|
|
printf ("Failed Conformance Test 17.8.0.22\n");
|
2022-10-17 22:50:42 +00:00
|
|
|
return 0;
|
2017-10-21 23:40:19 +00:00
|
|
|
|
|
|
|
Fail1:
|
|
|
|
printf ("Unable to redirect stdin for Conformance Test 17.8.0.22\n");
|
2022-10-17 22:50:42 +00:00
|
|
|
return 0;
|
2017-10-21 23:40:19 +00:00
|
|
|
}
|