Remove definition of is_octal and is_decimal, they arent used
This commit is contained in:
parent
75762705a3
commit
f853db54f9
@ -70,9 +70,6 @@ char *strtok_r(char *s, const char *delim, char **ptrptr);
|
|||||||
#define BUF_SIZE 8192
|
#define BUF_SIZE 8192
|
||||||
#define EXPAND_ALLOC 1024
|
#define EXPAND_ALLOC 1024
|
||||||
|
|
||||||
static inline int is_decimal(int ch) { return ((ch >= '0') && (ch <= '9')); }
|
|
||||||
static inline int is_octal(int ch) { return ((ch >= '0') && (ch <= '7')); }
|
|
||||||
|
|
||||||
/* Macros for min/max. */
|
/* Macros for min/max. */
|
||||||
#ifndef MIN
|
#ifndef MIN
|
||||||
#define MIN(a,b) (((a)<(b))?(a):(b))
|
#define MIN(a,b) (((a)<(b))?(a):(b))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user