cregit-Linux how code gets into the kernel

Release 4.14 arch/x86/boot/ctype.h

Directory: arch/x86/boot
/* 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

PersonTokensPropCommitsCommitProp
Yinghai Lu23100.00%1100.00%
Total23100.00%1100.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

PersonTokensPropCommitsCommitProp
Yinghai Lu50100.00%1100.00%
Total50100.00%1100.00%

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Yinghai Lu7996.34%133.33%
Alexander Kuleshov22.44%133.33%
Greg Kroah-Hartman11.22%133.33%
Total82100.00%3100.00%
Directory: arch/x86/boot
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.