aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--busybox.h7
-rw-r--r--include/busybox.h7
2 files changed, 4 insertions, 10 deletions
diff --git a/busybox.h b/busybox.h
index 21c62faac..63f39590f 100644
--- a/busybox.h
+++ b/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 58static inline int isDecimal(ch) { return ((ch >= '0') && (ch <= '9')); }
59#define isBlank(ch) (((ch) == ' ') || ((ch) == '\t')) 59static 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 58static inline int isDecimal(ch) { return ((ch >= '0') && (ch <= '9')); }
59#define isBlank(ch) (((ch) == ' ') || ((ch) == '\t')) 59static 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