isoctal
#define isoctal(chr) (((chr) >= '0') && ((chr) <= '7'))
#define isoctal(c) ((c) >= '0' && (c) < '8')
#undef isoctal