Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
palmer
/
sparse
/
53eacc1fa688f066a5426f44fbc85710677fc172
/
.
/
validation
/
expand
/
builtin_isdigit.c
blob: 56550b3863665dda92bf4d98d44d88200797c6fc [
file
] [
log
] [
blame
]
_Static_assert
(
__builtin_isdigit
(
'0'
));
_Static_assert
(
__builtin_isdigit
(
'9'
));
_Static_assert
(!
__builtin_isdigit
(
0
));
_Static_assert
(!
__builtin_isdigit
(
' '
));
_Static_assert
(!
__builtin_isdigit
(
'z'
));
/*
* check-name: builtin_isdigit
*/