https://github.com/torvalds/linux
Raw File
Tip revision: 5611cc4572e889b62a7b4c72a413536bf6a9c416 authored by Linus Torvalds on 01 December 2011, 22:56:01 UTC
Linux 3.2-rc4
Tip revision: 5611cc4
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