aboutsummaryrefslogtreecommitdiff
path: root/lpg/libqr/code-common.h
blob: 11538d839bbdda73c3a7da60aed932cfae0c328c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef CODE_COMMON_H
#define CODE_COMMON_H

#include <qr/code.h>
#include "qr-bitstream.h"
#include "qr-bitmap.h"

struct qr_code {
        int                version;
        struct qr_bitmap * modules;
};

size_t code_total_capacity(int version);

#endif