diff options
author | Leo Uino <leo@norisys.jp> | 2011-07-14 11:36:58 +0900 |
---|---|---|
committer | Leo Uino <leo@norisys.jp> | 2011-07-14 12:08:12 +0900 |
commit | 3af4ffd175dcaf8aaf735f3f9564da54c4f29403 (patch) | |
tree | a7bcb6f3e372ec7e3ec92ee0fa6be831e664fd9b /lpg/libqr/qr/common.h | |
parent | 35baea42d794bec1fd5f2200f1f6f48877c5c26c (diff) | |
download | pdf-simple-sign-3af4ffd175dcaf8aaf735f3f9564da54c4f29403.tar.gz pdf-simple-sign-3af4ffd175dcaf8aaf735f3f9564da54c4f29403.tar.xz pdf-simple-sign-3af4ffd175dcaf8aaf735f3f9564da54c4f29403.zip |
Create common header
Diffstat (limited to 'lpg/libqr/qr/common.h')
-rw-r--r-- | lpg/libqr/qr/common.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lpg/libqr/qr/common.h b/lpg/libqr/qr/common.h new file mode 100644 index 0000000..9caf3e0 --- /dev/null +++ b/lpg/libqr/qr/common.h @@ -0,0 +1,14 @@ +#ifndef QR_COMMON_H +#define QR_COMMON_H + +#include <qr/types.h> + +struct qr_bitmap * qr_mask_apply(const struct qr_bitmap * orig, + unsigned int mask); + +size_t qr_code_total_capacity(int version); + +int qr_code_width(const struct qr_code *); + +#endif + |