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
|
/* Test of scanf(): 'o' conversion directive.
$Id: sscanf-o1.c,v 1.2.2.3 2008/03/20 21:42:34 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 {
unsigned int i[10];
char s[10];
} v = { {1}, {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)
#define PVEC(args...) ({ static int __x[] PROGMEM = {args}; __x; })
int main ()
{
/* Empty input. */
CHECK (-1, (*(char *)v.i == FILL), "", "%o", v.i);
CHECK (-1, (*(char *)v.i == FILL), "", " %o", v.i);
CHECK (-1, (*(char *)v.i == FILL), " ", " %o", v.i);
CHECK (-1, (*(char *)v.i == FILL), " ", " %o", v.i);
CHECK (-1, (*(char *)v.i == FILL), "\t\n\v\f\r", " %o", v.i);
/* Normal conversion. */
CHECK (1, (v.i[0] == 0), "0", "%o", v.i);
CHECK (
10,
!memcmp_P (
v.i,
PVEC (0, 0, 1, 0123456, 077777, 0100000, 0177777, -1,
012345, -07654),
10 * sizeof(int)),
"+0 -0 1 123456 77777 100000 177777 -1 +12345 -7654",
"%o %o %o %o %o %o %o %o %o %o",
v.i + 0, v.i + 1,
v.i + 2, v.i + 3,
v.i + 4, v.i + 5,
v.i + 6, v.i + 7,
v.i + 8, v.i + 9);
/* Leading spaces. */
CHECK (1, (v.i[0] == 012), " 12", "%o", v.i);
CHECK (1, (v.i[0] == 0123), "\t\n\v\f\r123", "%o", v.i);
/* Leading '0'. */
CHECK (1, (v.i[0] == 04567), "04567", "%o", v.i);
CHECK (1, (v.i[0] == 07654), "00000000007654", "%o", v.i);
/* End of number. */
CHECK (2, v.i[0] == 0 && v.s[0] == 'x', "0x1", "%o%c", v.i, v.s);
CHECK (
14,
!memcmp_P (v.i, PVEC (1,2,3,4,5,6,7), 7 * sizeof(int))
&& !memcmp_P (v.s, PSTR(" \n.89\001\377"), 7),
"1 2\n3.48596\0017\3776",
"%o%c%o%c%o%c%o%c%o%c%o%c%o%c",
v.i + 0, v.s + 0,
v.i + 1, v.s + 1,
v.i + 2, v.s + 2,
v.i + 3, v.s + 3,
v.i + 4, v.s + 4,
v.i + 5, v.s + 5,
v.i + 6, v.s + 6);
CHECK (
3,
!memcmp_P (v.i, PVEC (1, -2, 3), 3 * sizeof(int)),
"1-2+3", "%o%o%o", v.i, v.i + 1, v.i + 2);
return 0;
}
|