diff options
Diffstat (limited to 'lpg/libqr/qrgen.c')
-rw-r--r-- | lpg/libqr/qrgen.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lpg/libqr/qrgen.c b/lpg/libqr/qrgen.c index 1309596..ad53125 100644 --- a/lpg/libqr/qrgen.c +++ b/lpg/libqr/qrgen.c @@ -1,17 +1,16 @@ +#include <assert.h> #include <ctype.h> +#include <getopt.h> +#include <limits.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <assert.h> -#include <limits.h> -#include <getopt.h> + #include <qr/bitmap.h> +#include <qr/bitstream.h> #include <qr/code.h> #include <qr/data.h> -#include "qr-bitstream.h" -#include "code-common.h" - struct config { int version; enum qr_ec_level ec; |