File: sscanf_flt-f1.c

package info (click to toggle)
avr-libc 1%3A1.6.2.cvs20080610-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 14,848 kB
  • ctags: 55,619
  • sloc: ansic: 92,267; asm: 6,692; sh: 4,131; makefile: 2,481; python: 976; pascal: 426; perl: 116
file content (133 lines) | stat: -rw-r--r-- 3,844 bytes parent folder | download
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/* Test of scanf(): float conversion.
   $Id: sscanf_flt-f1.c,v 1.1.2.3 2008/03/20 21:42:36 joerg_wunsch Exp $	*/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "progmem.h"

#ifdef	__AVR__
# define ASSERT(expr)			\
    do {				\
	if (!(expr)) exit(__LINE__);	\
    } while (0)
# define EXIT(v)	exit (v)
# if defined(__AVR_ATmega128__)
  /* ATmega128 has enough RAM for sprintf(), print to 0x2000 in XRAM. */
#  define PRINTF(f...)	sprintf((char *)0x2000, f)
# else
  /* small AVR */
#  define PRINTF(f...)
# endif
#else
# include <assert.h>
# define ASSERT(expr)	assert (expr)
# define EXIT(v)	exit ((v) < 256 ? (v) : 255)
# define PRINTF(f...)	printf (f)
# define sscanf_P	sscanf
# define memcmp_P	memcmp
#endif

/* Next variables are useful to debug the AVR.	*/
int vrslt = 1;
struct {
    float x[7];
    char c[7];
} v = { {1.0}, {1} };

void Check (int line, int expval, int rslt)
{
    vrslt = rslt;
    if (rslt != expval) {
	PRINTF ("\nLine %d:  expect= %d, rslt= %d\n", line, expval, rslt);
	EXIT (line);
    }
}

/* The sscanf() is called 4 times: SRAM and FLASH format, 2 values
   to fill before run.	*/
#define CHECK(expval, ass_expr, str, fmt, ...)				\
    do {								\
	PROGMEM static char fmt_p[] = fmt;				\
	char str_s[220];						\
	char fmt_s[40];							\
	char FILL;							\
	int i;								\
	int (* volatile vp)(const char *, const char *, ...);		\
									\
	ASSERT (sizeof(str_s) >= sizeof(str));				\
	ASSERT (sizeof(fmt_s) >= sizeof(fmt_p));			\
	strcpy_P (str_s, PSTR(str));					\
	strcpy_P (fmt_s, fmt_p);					\
									\
	for (FILL = 0; FILL < 4; FILL++) {				\
	    memset (&v, FILL, sizeof(v));				\
	    vp = (FILL & 1) ? sscanf_P : sscanf;			\
	    i = vp (str_s, (FILL & 1) ? fmt_p : fmt_s, ##__VA_ARGS__);	\
	    Check (__LINE__, expval, i);				\
    	    ASSERT (ass_expr);						\
	}								\
    } while (0)

int main ()
{
    /* All possible conversion symbols.	*/
    CHECK (
	6,
	v.x[0] == 1.0 && v.x[1] == 2.0 && v.x[2] == 3.0
	&& v.x[3] == 4.0 && v.x[4] == 5.0 && v.x[5] == 6.0,
	"1 2 3 4 5 6", "%e %E %f %F %g %G",
	& v.x[0], & v.x[1], & v.x[2], & v.x[3], & v.x[4], & v.x[5]);

    /* Empty input.	*/
    CHECK (-1, (*(char *)v.x == FILL), "", "%e", v.x);
    CHECK (-1, (*(char *)v.x == FILL), "", " %e", v.x);
    CHECK (-1, (*(char *)v.x == FILL), " ", " %e", v.x);
    CHECK (-1, (*(char *)v.x == FILL), " ", "  %e", v.x);
    CHECK (-1, (*(char *)v.x == FILL), "\t\n\v\f\r", " %e", v.x);

    /* 0.0	*/
    CHECK (
	6,
	v.x[0] == 0.0 && v.x[1] == 0.0 && v.x[2] == 0.0
	&& v.x[3] == 0.0 && v.x[4] == 0.0 && v.x[5] == 0.0,
	"0 0. .0 0.0 +0 +0.0", "%e %e %e %e %e %e",
	& v.x[0], & v.x[1], & v.x[2], & v.x[3], & v.x[4], & v.x[5]);

    /* -0.0	*/
    CHECK (
	6,
	v.x[0] == -0.0 && v.x[1] == -0.0 && v.x[2] == -0.0
	&& v.x[3] == -0.0 && v.x[4] == -0.0 && v.x[5] == -0.0,
	"-0 -0. -.0 -0.0 -00 -0e+00", "%e %e %e %e %e %e",
	& v.x[0], & v.x[1], & v.x[2], & v.x[3], & v.x[4], & v.x[5]);

    /* End of number.	*/
    CHECK (
	12,
	v.x[0] == 123 && v.c[0] == ' '
	&& v.x[1] == 456 && v.c[1] == '\001'
	&& v.x[2] == 789 && v.c[2] == '\377'
	&& v.x[3] == 12. && v.c[3] == '/'
	&& v.x[4] == 345 && v.c[4] == ':'
	&& v.x[5] == 678 && v.c[5] == 'd',
	"123 456\001789\377012/345:678d+11",
	"%e%c %e%c %e%c %e%c %e%c %e%c",
	& v.x[0], & v.c[0], & v.x[1], & v.c[1], & v.x[2], & v.c[2],
	& v.x[3], & v.c[3], & v.x[4], & v.c[4], & v.x[5], & v.c[5]);

    CHECK (
	12,
	v.x[0] == 234 && v.c[0] == '.'
	&& v.x[1] == 567 && v.c[1] == '+'
	&& v.x[2] == 890 && v.c[2] == '-'
	&& v.x[3] == 123 && v.c[3] == 'f'
	&& v.x[4] == 456 && v.c[4] == '\177'
	&& v.x[5] == 0.5 && v.c[5] == '.',
	"234..567+890-123f+456\1770.5.",
	"%e%c %e%c %e%c %e%c %e%c %e%c",
	& v.x[0], & v.c[0], & v.x[1], & v.c[1], & v.x[2], & v.c[2],
	& v.x[3], & v.c[3], & v.x[4], & v.c[4], & v.x[5], & v.c[5]);

    return 0;
}