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 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. */
|
||||
#ifndef MIN
|
||||
#define MIN(a,b) (((a)<(b))?(a):(b))
|
||||
|
Loading…
Reference in New Issue
Block a user