Public function - see documentation comment in header file.
| 691 | |
| 692 | // Public function - see documentation comment in header file. |
| 693 | bool qrcodegen_isAlphanumeric(const char *text) { |
| 694 | assert(text != NULL); |
| 695 | for (; c_read8(text) != '\0'; text++) { |
| 696 | if (c_strchr(ALPHANUMERIC_CHARSET, c_read8(text)) == NULL) |
| 697 | return false; |
| 698 | } |
| 699 | return true; |
| 700 | } |
| 701 | |
| 702 | |
| 703 | // Public function - see documentation comment in header file. |
no test coverage detected