Release 4.14 arch/x86/boot/ctype.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef BOOT_CTYPE_H
#define BOOT_CTYPE_H
static inline int isdigit(int ch)
{
return (ch >= '0') && (ch <= '9');
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yinghai Lu | 23 | 100.00% | 1 | 100.00% |
Total | 23 | 100.00% | 1 | 100.00% |
static inline int isxdigit(int ch)
{
if (isdigit(ch))
return true;
if ((ch >= 'a') && (ch <= 'f'))
return true;
return (ch >= 'A') && (ch <= 'F');
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yinghai Lu | 50 | 100.00% | 1 | 100.00% |
Total | 50 | 100.00% | 1 | 100.00% |
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yinghai Lu | 79 | 96.34% | 1 | 33.33% |
Alexander Kuleshov | 2 | 2.44% | 1 | 33.33% |
Greg Kroah-Hartman | 1 | 1.22% | 1 | 33.33% |
Total | 82 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.