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 134 135 136 137 138 139 140 141 142
|
/* $Id: strcasestr_P.c,v 1.1.2.1 2008/03/20 21:42:30 joerg_wunsch Exp $ */
#ifndef __AVR__
# define _GNU_SOURCE /* to include strcasestr() */
# define PRINTFLN(line, fmt, ...) \
printf("\nLine %d: " fmt "\n", line, ##__VA_ARGS__)
# define EXIT(code) exit ((code) < 255 ? (code) : 255)
# define strcasestr_P strcasestr
#else
# if defined(__AVR_ATmega128__)
/* ATmega128 has enough RAM for sprintf(), print to 0x2000 in XRAM. */
# define PRINTFLN(line, fmt, ...) \
sprintf ((char *)0x2000, "\nLine %d: " fmt "\n", line, ##__VA_ARGS__)
# else
/* small AVR */
# define PRINTFLN(args...)
# endif
# define EXIT exit
#endif
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "progmem.h"
void Check (int line, const char *s1, const char *s2, int expect)
{
char t1[300];
char *p;
if (strlen_P(s1) > sizeof(t1) - 1)
exit (1);
strcpy_P (t1, s1);
p = strcasestr_P (t1, s2);
if (expect < 0) {
if (p) {
PRINTFLN (line, "return nonzero");
EXIT (line);
}
} else {
if (p != t1 + expect) {
PRINTFLN (line, "expect= %d result= %d", expect, p - t1);
EXIT (1000 + line);
}
}
if (strcmp_P (t1, s1)) {
PRINTFLN (line, "string is changed");
EXIT (2000 + line);
}
}
#define CHECK(s1, s2, expect) do { \
Check (__LINE__, PSTR(s1), PSTR(s2), expect); \
} while (0)
int main ()
{
/* Empty 'needle'. */
CHECK ("", "", 0);
CHECK ("12345", "", 0);
/* bug #19135 */
CHECK ("ababac", "abac", 2);
/* 'needle' of 1 byte long */
CHECK ("", "a", -1);
CHECK ("b", "a", -1);
CHECK ("a", "a", 0);
CHECK ("abcbef", "a", 0);
CHECK (".a", "a", 1);
CHECK (".a.", "a", 1);
CHECK ("ABCDEFGH", "H", 7);
/* 'needle' of 2 bytes long */
CHECK ("", "12", -1);
CHECK ("13", "12", -1);
CHECK ("32", "12", -1);
CHECK ("12", "12", 0);
CHECK ("123", "12", 0);
CHECK ("012", "12", 1);
CHECK ("01200", "12", 1);
/* partially mathing */
CHECK ("a_ab_abc_abcd_abcde", "abcdef", -1);
CHECK ("a_ab_abc_abcd_abcde_abcdef", "abcdef", 20);
CHECK ("aababcabcdabcde", "abcdef", -1);
CHECK ("aababcabcdabcdeabcdef", "abcdef", 15);
/* repeated chars */
CHECK ("abaabaaabaaaab", "aaaaab", -1);
CHECK ("abaabaaabaaaabaaaaab", "aaaaab", 14);
/* A first match is returned. */
CHECK ("_foo_foo", "foo", 1);
/* Case is ignored. */
CHECK ("A", "a", 0);
CHECK ("qwertyuiopasdfghjklzxcvbnm",
"QWERTYUIOPASDFGHJKLZXCVBNM",
0);
CHECK (" QWERTYUIOPASDFGHJKLZXCVBNM",
"qwertyuiopasdfghjklzxcvbnm",
1);
CHECK (" The Quick Brown Fox ", "thE quicK browN foX", 2);
/* Case is ignored for alphas only. */
CHECK ("", "\040", -1);
CHECK ("\100", "\140", -1); /* first */
CHECK ("\140", "\100", -1);
CHECK ("\133", "\173", -1);
CHECK ("\173", "\133", -1);
CHECK (".\100", ".\140", -1); /* second */
CHECK (".\140", ".\100", -1);
CHECK (".\133", ".\173", -1);
CHECK (".\173", ".\133", -1);
CHECK ("\100\140", "\140", 1); /* second match */
/* Very long s1 */
CHECK ("................................................................"
"................................................................"
"................................................................"
"...............................................................A",
"a", 255);
CHECK ("................................................................"
"................................................................"
"................................................................"
"................................................................"
"a", "A", 256);
CHECK ("................................................................"
"................................................................"
"................................................................"
"................................................................"
".a", "A", 257);
CHECK ("................................................................"
"................................................................"
"................................................................"
"................................................................"
".a", "..A", 255);
return 0;
}
|