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
|
/* $Id: memchr_P.c,v 1.1 2007/03/01 13:06:02 dmix Exp $ */
#ifndef __AVR__
# include <stdio.h>
# define memchr_P memchr
#endif
#include <stdlib.h>
#include <string.h>
#include "progmem.h"
void Check (int line, const char *s, int c, size_t len, int expect)
{
const char *p;
p = memchr_P (s, c, len);
if ((expect == -1 && !p) || (s + expect == p))
return;
#ifndef __AVR__
printf ("\nLine %d: expect: %d, result: %d\n",
line, expect, (p ? p-s : -1));
if (line > 255) line = 255; /* common OS restriction */
#endif
exit (line);
}
#define CHECK(s, c, len, expect) do { \
Check (__LINE__, PSTR(s), c, len, expect); \
} while (0)
int main ()
{
/* Not found */
CHECK ("", 0, 0, -1);
CHECK ("", 255, 0, -1);
CHECK ("ABCDEF", 'a', 6, -1);
/* Found */
CHECK ("\000", 0, 1, 0);
CHECK ("\001", 1, 1, 0);
CHECK ("\377", 255, 1, 0);
CHECK ("987654321", '7', 9, 2);
/* '\0' has't a special sense */
CHECK ("12345", 0, 6, 5);
CHECK (".\000.", 0, 3, 1);
CHECK ("\000a\000b", 'b', 4, 3);
/* First occurance */
CHECK ("abcdabcd", 'b', 8, 1);
CHECK ("........", '.', 8, 0);
/* 'c' converted to a char */
CHECK ("ABCDEF", 'A'+0x100, 6, 0);
CHECK ("ABCDE\377", ~0, 6, 5);
/* Very long string */
CHECK ("................................................................"
"................................................................"
"................................................................"
"................................................................"
"*...............................................................",
'*', 320, 256);
return 0;
}
|