Subversion Repositories tendra.SVN

Rev

Rev 5 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 7u83 1
/*
6 7u83 2
 * Copyright (c) 2002-2005 The TenDRA Project <http://www.tendra.org/>.
3
 * All rights reserved.
4
 *
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions are met:
7
 *
8
 * 1. Redistributions of source code must retain the above copyright notice,
9
 *    this list of conditions and the following disclaimer.
10
 * 2. Redistributions in binary form must reproduce the above copyright notice,
11
 *    this list of conditions and the following disclaimer in the documentation
12
 *    and/or other materials provided with the distribution.
13
 * 3. Neither the name of The TenDRA Project nor the names of its contributors
14
 *    may be used to endorse or promote products derived from this software
15
 *    without specific, prior written permission.
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS
18
 * IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
19
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
21
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22
 * EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
24
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
27
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
 *
29
 * $Id$
30
 */
31
/*
2 7u83 32
    		 Crown Copyright (c) 1997
6 7u83 33
 
2 7u83 34
    This TenDRA(r) Computer Program is subject to Copyright
35
    owned by the United Kingdom Secretary of State for Defence
36
    acting through the Defence Evaluation and Research Agency
37
    (DERA).  It is made available to Recipients with a
38
    royalty-free licence for its use, reproduction, transfer
39
    to other parties and amendment for any purpose not excluding
40
    product development provided that any such use et cetera
41
    shall be deemed to be acceptance of the following conditions:-
6 7u83 42
 
2 7u83 43
        (1) Its Recipients shall ensure that this Notice is
44
        reproduced upon any copies or amended versions of it;
6 7u83 45
 
2 7u83 46
        (2) Any amended version of it shall be clearly marked to
47
        show both the nature of and the organisation responsible
48
        for the relevant amendment or amendments;
6 7u83 49
 
2 7u83 50
        (3) Its onward transfer from a recipient to another
51
        party shall be deemed to be that party's acceptance of
52
        these conditions;
6 7u83 53
 
2 7u83 54
        (4) DERA gives no warranty or assurance as to its
55
        quality or suitability for any purpose and DERA accepts
56
        no liability whatsoever in relation to any use to which
57
        it may be put.
58
*/
59
 
60
 
61
/**** syntax.c --- Character classification.
62
 *
63
 ** Author: Steve Folkes <smf@hermes.mod.uk>
64
 *
65
 **** Commentary:
66
 *
67
 * This file implements the syntax table facility specified in the file
68
 * "syntax.h". See that file for more details.
69
 *
70
 * This particular implementation assumes that the ASCII character set is
71
 * being used. It will need changing for other character sets.
72
 *
73
 **** Change Log:
74
 * $Log: syntax.c,v $
75
 * Revision 1.1.1.1  1998/01/17  15:57:46  release
76
 * First version to be checked into rolling release.
77
 *
78
 * Revision 1.2  1994/12/12  11:45:52  smf
79
 * Performing changes for 'CR94_178.sid+tld-update' - bringing in line with
80
 * OSSG C Coding Standards.
81
 *
82
 * Revision 1.1.1.1  1994/07/25  16:06:12  smf
83
 * Initial import of os-interface shared files.
84
 *
85
**/
86
 
87
/****************************************************************************/
88
 
89
#include "syntax.h"
90
 
91
/*--------------------------------------------------------------------------*/
92
 
93
int
6 7u83 94
syntax_value(char c)
2 7u83 95
{
96
    if ((c >= '0') && (c <= '9')) {
6 7u83 97
	return(c - '0');
2 7u83 98
    } else if ((c >= 'A') && (c <= 'Z')) {
6 7u83 99
	return(c - 'A' + 10);
2 7u83 100
    } else if ((c >= 'a') && (c <= 'z')) {
6 7u83 101
	return(c - 'a' + 10);
2 7u83 102
    }
6 7u83 103
    return(SYNTAX_NO_VALUE);
2 7u83 104
}
105
 
106
char
6 7u83 107
syntax_upcase(char c)
2 7u83 108
{
109
    if ((c >= 'a') && (c <= 'z')) {
6 7u83 110
	return((char)(c - 'a' + 'A'));
2 7u83 111
    }
6 7u83 112
    return(c);
2 7u83 113
}
114
 
115
char
6 7u83 116
syntax_downcase(char c)
2 7u83 117
{
118
    if ((c >= 'A') && (c <= 'Z')) {
6 7u83 119
	return((char)(c - 'A' + 'a'));
2 7u83 120
    }
6 7u83 121
    return(c);
2 7u83 122
}
123
 
124
BoolT
6 7u83 125
syntax_is_white_space(char c)
2 7u83 126
{
6 7u83 127
    return((c < 33) || (c > 126));
2 7u83 128
}
129
 
130
BoolT
6 7u83 131
syntax_is_printable(char c)
2 7u83 132
{
6 7u83 133
    return((c > 31) && (c < 127));
2 7u83 134
}
135
 
136
BoolT
6 7u83 137
syntax_is_letter(char c)
2 7u83 138
{
6 7u83 139
    return(((c >= 'a') && (c <= 'z')) || ((c >= 'A') && (c <= 'Z')));
2 7u83 140
}
141
 
142
BoolT
6 7u83 143
syntax_is_digit(char c)
2 7u83 144
{
6 7u83 145
    return((c >= '0') && (c <= '9'));
2 7u83 146
}