Release 4.11 arch/x86/boot/ctype.h
#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 | 97.53% | 1 | 50.00% |
Alexander Kuleshov | 2 | 2.47% | 1 | 50.00% |
Total | 81 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.