aboutsummaryrefslogtreecommitdiff
path: root/lpg/libqr/qr/code.h
blob: e6eb47ccd559c2d4b90c0870574ca7e6da434250 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef QR_CODE_H
#define QR_CODE_H

#include <stddef.h>
#include "types.h"

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

struct qr_code * qr_code_create(const struct qr_data * data);

void qr_code_destroy(struct qr_code *);

#endif