cregit-Linux how code gets into the kernel

Release 4.11 arch/x86/boot/ctype.h

Directory: arch/x86/boot
#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 Lu7997.53%150.00%
Alexander Kuleshov22.47%150.00%
Total81100.00%2100.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.