qr.h (214B)
1 #ifndef KEE_QR_H_ 2 #define KEE_QR_H_ 3 4 #include <stddef.h> 5 6 7 #ifndef QR_CAP 8 #define QR_CAP 125 // ~1024 bytes 9 #endif 10 11 #define QR_VERSION 20 12 13 14 int qr_encode(char *in, char *out, size_t *out_len); 15 16 #endif // KEE_QR_H_