summaryrefslogtreecommitdiff
path: root/stdio-common/scanf10.c
blob: f8961378ef1ae460a9dc53cd22363ad33f743f5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <string.h>

int
main (int argc, char *argv[])
{
  const char teststring[] = "<tag `word'>";
  int retc, a, b;

  retc = sscanf (teststring, "<%*s `%n%*s%n'>", &a, &b);

  printf ("retc=%d a=%d b=%d\n", retc, a, b);

  return retc == -1 && a == 6 && b == 12 ? 0 : 1;
}