https://github.com/torvalds/linux
Raw File
Tip revision: 0034102808e0dbbf3a2394b82b1bb40b5778de9e authored by Linus Torvalds on 08 April 2012, 01:30:41 UTC
Linux 3.4-rc2
Tip revision: 0034102
ctype.h
#ifndef BOOT_ISDIGIT_H

#define BOOT_ISDIGIT_H

static inline int isdigit(int ch)
{
	return (ch >= '0') && (ch <= '9');
}

static inline int isxdigit(int ch)
{
	if (isdigit(ch))
		return true;

	if ((ch >= 'a') && (ch <= 'f'))
		return true;

	return (ch >= 'A') && (ch <= 'F');
}

#endif
back to top