~ubuntu-branches/ubuntu/karmic/avr-libc/karmic

« back to all changes in this revision

Viewing changes to tests/simulate/scanf/scanf_brk-nul.c

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2008-08-10 09:59:16 UTC
  • mfrom: (1.1.7 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080810095916-wwyigh3vt0e9s7ud
Tags: 1:1.6.2.cvs20080610-2
Added build-depends on texlive-extra-utils (closes: #493454)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Test of scanf(): NUL symbol (input file).
 
2
   $Id: scanf_brk-nul.c,v 1.1.2.3 2008/03/20 21:42:32 joerg_wunsch Exp $        */
 
3
 
 
4
#define _GNU_SOURCE
 
5
#include <stdio.h>
 
6
#include <stdlib.h>
 
7
#include <string.h>
 
8
#include "progmem.h"
 
9
 
 
10
#ifdef  __AVR__
 
11
# define ASSERT(expr)                   \
 
12
    do {                                \
 
13
        if (!(expr)) exit(__LINE__);    \
 
14
    } while (0)
 
15
# define EXIT(v)        exit (v)
 
16
# if defined(__AVR_ATmega128__)
 
17
  /* ATmega128 has enough RAM for sprintf(), print to 0x2000 in XRAM. */
 
18
#  define PRINTF(f...)  sprintf((char *)0x2000, f)
 
19
# else
 
20
  /* small AVR */
 
21
#  define PRINTF(f...)
 
22
# endif
 
23
# define ssize_t        int
 
24
#else
 
25
# include <assert.h>
 
26
# define ASSERT(expr)   assert (expr)
 
27
# define EXIT(v)        exit ((v) < 256 ? (v) : 255)
 
28
# define PRINTF(f...)   printf (f)
 
29
# define sscanf_P       sscanf
 
30
# define memcmp_P       memcmp
 
31
# define _FDEV_EOF      (-1)
 
32
#endif
 
33
 
 
34
/* Next variables are useful to debug the AVR.  */
 
35
int vrslt = 1;
 
36
struct {
 
37
    char s[8];
 
38
    char t[8];
 
39
} v = { {1}, {1} };
 
40
 
 
41
const char *getpnt, *getend;
 
42
 
 
43
int ugetc (FILE *fp)
 
44
{
 
45
    (void)fp;
 
46
    if (getpnt == getend)
 
47
        return _FDEV_EOF;
 
48
    return pgm_read_byte (getpnt++);
 
49
}
 
50
 
 
51
ssize_t uread (void *cookie, char *buf, size_t size)
 
52
{
 
53
    size_t n;
 
54
 
 
55
    for (n = 0; n < size; n++) {
 
56
        int i = ugetc (cookie);
 
57
        if (i < 0) break;
 
58
        *buf++ = i;
 
59
    }
 
60
    return n;
 
61
}
 
62
 
 
63
int uclose (void *cookie)
 
64
{
 
65
    (void)cookie;
 
66
    return 0;
 
67
}
 
68
 
 
69
static FILE * uopen (const char *buf, int size)
 
70
{
 
71
    static FILE *fp;
 
72
 
 
73
    if (fp) fclose (fp);
 
74
 
 
75
#ifdef  __AVR__
 
76
    fp = fdevopen (0, ugetc);
 
77
#else
 
78
    {
 
79
        cookie_io_functions_t iofuns;
 
80
        memset (& iofuns, 0, sizeof(iofuns));
 
81
        iofuns.read = uread;
 
82
        iofuns.close = uclose;
 
83
        fp = fopencookie (NULL, "rb", iofuns);
 
84
    }
 
85
#endif
 
86
    ASSERT (fp);
 
87
 
 
88
    getpnt = buf;
 
89
    getend = buf + size;
 
90
    return fp;
 
91
}
 
92
 
 
93
int main ()
 
94
{
 
95
    FILE *fp;
 
96
    int i;
 
97
 
 
98
    /* %[       */
 
99
    memset (&v, ~0, sizeof(v));
 
100
    fp = uopen (PSTR ("A\000BC"), 4);
 
101
    i = fscanf (fp, "%[A-Z]%s", v.s, v.t);
 
102
    ASSERT (i == 2);
 
103
    ASSERT (!memcmp_P (v.s, PSTR("A"), 2));
 
104
    ASSERT (!memcmp_P (v.t, PSTR("\000BC"), 4));
 
105
 
 
106
    /* %[^      */
 
107
    memset (&v, ~0, sizeof(v));
 
108
    fp = uopen (PSTR ("D\000EF"), 4);
 
109
    vrslt = fscanf (fp, "%[^F]%s", v.s, v.t);
 
110
    ASSERT (vrslt == 2);
 
111
    ASSERT (!memcmp_P (v.s, PSTR("D\000E"), 4));
 
112
    ASSERT (!memcmp_P (v.t, PSTR("F"), 2));
 
113
 
 
114
    return 0;
 
115
}