aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/torture/pr55684.c
blob: 7002a3737f8722deb99dc9203dc94df04a5563ed (plain)
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
/* { dg-do compile } */

typedef struct _IO_FILE FILE;
unsigned long int strtoul(const char *, char **, int);
char *fgets(char *, int, FILE *);
struct ihexrec {
    unsigned char reclen;
    unsigned char data[256];
};
static void srec_readrec(struct ihexrec * srec, char * rec)
{
  int i, j;
  char buf[8];
  int offset = 0, len;
  char * e;
  for (i=0; j<srec->reclen; j++)
    {
      if (offset+2 > len)
        return;
      for (i=0; i<2; i++)
        buf[i] = rec[offset++];
      srec->data[j] = strtoul(buf, &e, 16);
    }
  for (i=0; i<2; i++)
    buf[i] = rec[offset++];
}
void srec2b(FILE *inf)
{
  char buffer[256];
  struct ihexrec srec;
  while (fgets(buffer,256,inf)!=(void *)0)
    srec_readrec(&srec, buffer);
}