File tree 11 files changed +817
-795
lines changed
11 files changed +817
-795
lines changed Original file line number Diff line number Diff line change 35
35
36
36
#include <stdlib.h>
37
37
#include <string.h>
38
- #ifndef toupper
39
- #define toupper (c ) ((c) + ('A' - 'a'))
40
- #endif /* no toupper */
41
- #ifndef tolower
42
- #define tolower (c ) ((c) + ('a' - 'A'))
43
- #endif /* no tolower */
44
-
45
- #ifndef TRUE
46
- #define TRUE 1
47
- #define FALSE 0
38
+ #ifndef fpp_toupper
39
+ #define fpp_toupper (c ) ((c) + ('A' - 'a'))
40
+ #endif /* no fpp_toupper */
41
+ #ifndef fpp_tolower
42
+ #define fpp_tolower (c ) ((c) + ('a' - 'A'))
43
+ #endif /* no fpp_tolower */
44
+
45
+ #ifndef FPP_TRUE
46
+ #define FPP_TRUE 1
47
+ #define FPP_FALSE 0
48
48
#endif
49
49
#ifndef EOS
50
50
/*
51
51
* This is predefined in Decus C
52
52
*/
53
53
#define EOS '\0' /* End of string */
54
54
#endif
55
- #define EOF_CHAR 0 /* Returned by get () on eof */
55
+ #define EOF_CHAR 0 /* Returned by fpp_get () on eof */
56
56
#define NULLST ((char *) NULL) /* Pointer to nowhere (linted) */
57
57
#define DEF_NOARGS (-1) /* #define foo vs #define foo() */
58
58
139
139
/*
140
140
* These bits are set in ifstack[]
141
141
*/
142
- #define WAS_COMPILING 1 /* TRUE if compile set at entry */
143
- #define ELSE_SEEN 2 /* TRUE when #else processed */
144
- #define TRUE_SEEN 4 /* TRUE when #if TRUE processed */
142
+ #define WAS_COMPILING 1 /* FPP_TRUE if compile set at entry */
143
+ #define ELSE_SEEN 2 /* FPP_TRUE when #else processed */
144
+ #define FPP_TRUE_SEEN 4 /* FPP_TRUE when #if FPP_TRUE processed */
145
145
146
146
/*
147
147
* Define bits for the basic types and their adjectives
You can’t perform that action at this time.
0 commit comments