Public function - see documentation comment in header file.
| 702 | |
| 703 | // Public function - see documentation comment in header file. |
| 704 | bool qrcodegen_isNumeric(const char *text) { |
| 705 | assert(text != NULL); |
| 706 | for (; c_read8(text) != '\0'; text++) { |
| 707 | if (c_read8(text) < '0' || c_read8(text) > '9') |
| 708 | return false; |
| 709 | } |
| 710 | return true; |
| 711 | } |
| 712 | |
| 713 | |
| 714 | // Public function - see documentation comment in header file. |
no test coverage detected