diff options
-rw-r--r-- | busybox.h | 7 | ||||
-rw-r--r-- | include/busybox.h | 7 |
2 files changed, 4 insertions, 10 deletions
@@ -55,11 +55,8 @@ | |||
55 | #define BUF_SIZE 8192 | 55 | #define BUF_SIZE 8192 |
56 | #define EXPAND_ALLOC 1024 | 56 | #define EXPAND_ALLOC 1024 |
57 | 57 | ||
58 | 58 | static inline int isDecimal(ch) { return ((ch >= '0') && (ch <= '9')); } | |
59 | #define isBlank(ch) (((ch) == ' ') || ((ch) == '\t')) | 59 | static inline int isOctal(ch) { return ((ch >= '0') && (ch <= '7')); } |
60 | #define isDecimal(ch) (((ch) >= '0') && ((ch) <= '9')) | ||
61 | #define isOctal(ch) (((ch) >= '0') && ((ch) <= '7')) | ||
62 | #define isWildCard(ch) (((ch) == '*') || ((ch) == '?') || ((ch) == '[')) | ||
63 | 60 | ||
64 | /* Macros for min/max. */ | 61 | /* Macros for min/max. */ |
65 | #ifndef MIN | 62 | #ifndef MIN |
diff --git a/include/busybox.h b/include/busybox.h index 21c62faac..63f39590f 100644 --- a/include/busybox.h +++ b/include/busybox.h | |||
@@ -55,11 +55,8 @@ | |||
55 | #define BUF_SIZE 8192 | 55 | #define BUF_SIZE 8192 |
56 | #define EXPAND_ALLOC 1024 | 56 | #define EXPAND_ALLOC 1024 |
57 | 57 | ||
58 | 58 | static inline int isDecimal(ch) { return ((ch >= '0') && (ch <= '9')); } | |
59 | #define isBlank(ch) (((ch) == ' ') || ((ch) == '\t')) | 59 | static inline int isOctal(ch) { return ((ch >= '0') && (ch <= '7')); } |
60 | #define isDecimal(ch) (((ch) >= '0') && ((ch) <= '9')) | ||
61 | #define isOctal(ch) (((ch) >= '0') && ((ch) <= '7')) | ||
62 | #define isWildCard(ch) (((ch) == '*') || ((ch) == '?') || ((ch) == '[')) | ||
63 | 60 | ||
64 | /* Macros for min/max. */ | 61 | /* Macros for min/max. */ |
65 | #ifndef MIN | 62 | #ifndef MIN |