https://github.com/torvalds/linux
Raw File
Tip revision: cac7f2429872d3733dc3f9915857b1691da2eb2f authored by Linus Torvalds on 26 October 2014, 23:48:41 UTC
Linux 3.18-rc2
Tip revision: cac7f24
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