Public function - see documentation comment in header file.
| 637 | |
| 638 | // Public function - see documentation comment in header file. |
| 639 | int qrcodegen_getSize(const uint8_t qrcode[]) { |
| 640 | assert(qrcode != NULL); |
| 641 | int result = qrcode[0]; |
| 642 | assert((qrcodegen_VERSION_MIN * 4 + 17) <= result |
| 643 | && result <= (qrcodegen_VERSION_MAX * 4 + 17)); |
| 644 | return result; |
| 645 | } |
| 646 | |
| 647 | |
| 648 | // Public function - see documentation comment in header file. |
no test coverage detected