File: scanf7.c

package info (click to toggle)
glibc 2.31-13%2Bdeb11u11
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 279,908 kB
  • sloc: ansic: 1,026,869; asm: 260,545; makefile: 12,196; sh: 10,548; python: 9,618; cpp: 5,233; awk: 1,956; perl: 514; yacc: 290; pascal: 182; sed: 73
file content (33 lines) | stat: -rw-r--r-- 653 bytes parent folder | download | duplicates (22)
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
#include <stdio.h>
#include <stdlib.h>
#include <libc-diag.h>

int
main (int argc, char *argv[])
{
  long long int n;
  int ret;

  n = -1;
  ret = sscanf ("1000", "%lld", &n);
  printf ("%%lld: ret: %d, n: %Ld\n", ret, n);
  if (ret != 1 || n != 1000L)
    abort ();

  n = -2;

  /* We are testing a corner case of the scanf format string here.  */
  DIAG_PUSH_NEEDS_COMMENT;
  DIAG_IGNORE_NEEDS_COMMENT (4.9, "-Wformat");
  DIAG_IGNORE_NEEDS_COMMENT (4.9, "-Wformat-extra-args");

  ret = sscanf ("1000", "%llld", &n);

  DIAG_POP_NEEDS_COMMENT;

  printf ("%%llld: ret: %d, n: %Ld\n", ret, n);
  if (ret > 0 || n >= 0L)
    abort ();

  return 0;
}