1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef QR_COMMON_H #define QR_COMMON_H #include <qr/types.h> struct qr_bitmap * qr_mask_apply(const struct qr_bitmap * orig, unsigned int mask); size_t qr_code_total_capacity(int version); int qr_code_width(const struct qr_code *); #endif