summaryrefslogtreecommitdiff
path: root/reference/C/CONTRIB/OR_PRACTICAL_C/gen.h
blob: b8f342aa54745cd7ade276788aec1ef72f09ed86 (plain)
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
/********************************************************
 * gen.h -- general purpose macros.                     *
 ********************************************************/

/*
 * Define a boolean type 
 */
#ifndef TRUE
typedef int boolean;
#define TRUE 1
#define FALSE 0
#endif /* TRUE */

/********************************************************
 * SKIP_WHITESPACE -- move a character pointer          *
 *      past whitespace                                 *
 *                                                      *
 * Parameters                                           *
 *      cur_char -- pointer to current character        *
 *              (will be moved)                         *
 ********************************************************/
/* Move past whitespace */
#define SKIP_WHITESPACE(cur_char) \
    while ((*(cur_char) <= ' ') && (*(cur_char) != '\0')) \
        (cur_char)++;