~ubuntu-branches/ubuntu/raring/avr-libc/raring-proposed

« back to all changes in this revision

Viewing changes to tests/simulate/string/strlwr.c

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2008-08-10 09:59:16 UTC
  • mfrom: (1.2.1 upstream) (8 intrepid)
  • mto: (4.1.7 sid)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20080810095916-7ku06pjsfia3hz16
Added build-depends on texlive-extra-utils (closes: #493454)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: strlwr.c,v 1.1 2007/03/01 13:10:55 dmix Exp $   */
 
2
 
 
3
#ifndef __AVR__
 
4
# include <ctype.h>
 
5
# include <stdio.h>
 
6
#endif
 
7
#include <stdlib.h>
 
8
#include <string.h>
 
9
#include "progmem.h"
 
10
 
 
11
#ifndef __AVR__                 /* strlwr() is't a standart function    */
 
12
char * strlwr (char *s)
 
13
{
 
14
    char *p = s;
 
15
    while (*p) {
 
16
        *p = tolower(*p);
 
17
        p++;
 
18
    }
 
19
    return s;
 
20
}
 
21
#endif
 
22
 
 
23
void Check (int line, const char *s, const char *expect)
 
24
{
 
25
    char t[200];
 
26
    char *p;
 
27
    int code;
 
28
 
 
29
    if (strlen_P(s) > sizeof(t) - 1)
 
30
        exit (1);
 
31
    strcpy_P (t, s);
 
32
    p = strlwr (t);
 
33
    if (p != t)
 
34
        code = line + 1000;
 
35
    else if (strcmp_P (t, expect))
 
36
        code = line;
 
37
    else
 
38
        return;
 
39
#if     !defined(__AVR__)
 
40
    printf ("\nLine %d: expect: \"%s\""
 
41
            "\n         result: \"%s\"\n",
 
42
            line, expect, t);
 
43
    if (code > 255) code = 255;
 
44
#elif   defined(DEBUG)
 
45
    exit ((int)t);
 
46
#endif
 
47
    exit (code);
 
48
}
 
49
 
 
50
#define CHECK(s, expect)        do {            \
 
51
    Check (__LINE__, PSTR(s), PSTR(expect));    \
 
52
} while (0)
 
53
 
 
54
int main ()
 
55
{
 
56
    /* Empty string.    */
 
57
    CHECK ("", "");
 
58
    
 
59
    CHECK ("A", "a");
 
60
    CHECK ("Z", "z");
 
61
    CHECK ("@[", "@[");         /* '@'=='A'-1, '['=='Z'+1       */
 
62
    CHECK ("`az{", "`az{");     /* '`'=='a'-1, '{'=='z'+1       */
 
63
 
 
64
    CHECK ("QWERTYUIOPASDFGHJKLZXCVBNM", "qwertyuiopasdfghjklzxcvbnm");
 
65
    CHECK ("FoO", "foo");
 
66
    
 
67
    /* non-ASCII        */
 
68
    CHECK ("\001A\177\200\201B\377", "\001a\177\200\201b\377");
 
69
 
 
70
    return 0;
 
71
}