Blame stdio-common/bug9.c

Packit Service 82fcde
#include <stdio.h>
Packit Service 82fcde
#include <string.h>
Packit Service 82fcde
Packit Service 82fcde
int
Packit Service 82fcde
main(int argc, char *argv[])
Packit Service 82fcde
{
Packit Service 82fcde
  char buf[100];
Packit Service 82fcde
  int a, b;
Packit Service 82fcde
  int status = 0;
Packit Service 82fcde
Packit Service 82fcde
  sscanf ("12ab", "%dab%n", &a, &b);
Packit Service 82fcde
  sprintf (buf, "%d, %d", a, b);
Packit Service 82fcde
  puts (buf);
Packit Service 82fcde
  status |= strcmp (buf, "12, 4");
Packit Service 82fcde
Packit Service 82fcde
  sscanf ("12ab100", "%dab%n100", &a, &b);
Packit Service 82fcde
  sprintf (buf, "%d, %d", a, b);
Packit Service 82fcde
  puts (buf);
Packit Service 82fcde
  status |= strcmp (buf, "12, 4");
Packit Service 82fcde
Packit Service 82fcde
  return status;
Packit Service 82fcde
}