| 109 | WINDOW *mainwin; |
| 110 | |
| 111 | signed char is_numeric(char *str) |
| 112 | { |
| 113 | while (*str) { |
| 114 | if(!isdigit(*str)) |
| 115 | return 0; |
| 116 | str++; |
| 117 | } |
| 118 | return 1; |
| 119 | } |
| 120 | |
| 121 | void nprintf(char *format, ...) |
| 122 | { |
no outgoing calls
no test coverage detected