Home
last modified time | relevance | path

Searched refs:is_digit (Results 1 – 5 of 5) sorted by relevance

/DragonOS-0.1.2/user/libs/libc/src/
Dprintf.h13 #define is_digit(c) ((c) >= '0' && (c) <= '9') // 用来判断是否是数字的宏 macro
Dprintf.c19 while (is_digit(**s)) in skip_and_atoi()
156 else if (is_digit(*fmt)) in vsprintf()
176 else if is_digit (*fmt) in vsprintf()
/DragonOS-0.1.2/kernel/src/common/
Dprintk.h16 #define is_digit(c) ((c) >= '0' && (c) <= '9') // 用来判断是否是数字的宏 macro
/DragonOS-0.1.2/kernel/src/libs/
Dprintk.c36 while (is_digit(**s)) in skip_and_atoi()
143 else if (is_digit(*fmt)) in __do_vsprintf()
163 else if (is_digit(*fmt)) in __do_vsprintf()
/DragonOS-0.1.2/docs/community/code_contribution/
Dcoding-style.md87 else if (is_digit(*fmt))