aboutsummaryrefslogtreecommitdiff
path: root/lpg/libqr/code-layout.h
blob: 79e9730901999d98d2c3dce78a75bb8208739c22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef CODE_LAYOUT_H
#define CODE_LAYOUT_H

struct qr_iterator;

struct qr_iterator * qr_layout_begin(struct qr_code *);
unsigned int qr_layout_read(struct qr_iterator *);
void qr_layout_write(struct qr_iterator *, unsigned int);
void qr_layout_end(struct qr_iterator *);

#endif