aboutsummaryrefslogtreecommitdiff
path: root/lpg/libqr/code-common.h
blob: 045970864a9d155b1a4d385d324172774a30f988 (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/bitmap.h>
#include "qr-bitstream.h"

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

size_t code_total_capacity(int version);

#endif