blob: 9bb14bb16bee036695836916caa94c8729f5f8e0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#include <stdio.h>
#include <stdlib.h>
#include <libc-internal.h>
int
main(int arc, char *argv[])
{
int res;
unsigned int val;
FILE *fp = fopen ("/dev/null", "r");
val = 0;
res = fscanf(fp, "%n", &val);
printf("Result of fscanf %%n = %d\n", res);
printf("Scanned format = %d\n", val);
/* We're testing exactly the case the warning is for. */
DIAG_PUSH_NEEDS_COMMENT;
DIAG_IGNORE_NEEDS_COMMENT (4.9, "-Wformat-zero-length");
res = fscanf(fp, "");
DIAG_POP_NEEDS_COMMENT;
printf("Result of fscanf \"\" = %d\n", res);
if (res != 0)
abort ();
res = fscanf(fp, "BLURB");
printf("Result of fscanf \"BLURB\" = %d\n", res);
if (res >= 0)
abort ();
fclose (fp);
return 0;
return 0;
}
|