tag
line
file
source code
is_digit
103
arch/ppc/kernel/raw_printf.c
#define is_digit(c) ((c >= '0') && (c <= '9'))
is_digit
43
lib/vsprintf.c
#define is_digit(c) ((c) >= '0' && (c) <= '9')