These are defined as macros to make it easier to adapt this code to * different characters types or comparison functions. */
| 76 | /* These are defined as macros to make it easier to adapt this code to |
| 77 | * different characters types or comparison functions. */ |
| 78 | static inline int |
| 79 | nat_isdigit( nat_char a ) |
| 80 | { |
| 81 | return dIsdigit( a ); |
| 82 | } |
| 83 | |
| 84 | |
| 85 | static inline int |
no test coverage detected