MCPcopy Create free account
hub / github.com/eggert/tz / is_digit

Function is_digit

zdump.c:92–96  ·  view source on GitHub ↗

Is C an ASCII digit? */

Source from the content-addressed store, hash-verified

90
91/* Is C an ASCII digit? */
92static bool
93is_digit(char c)
94{
95 return '0' <= c && c <= '9';
96}
97
98/* Is A an alphabetic character in the C locale? */
99static bool

Callers 1

abbrokFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected