blob: 4ca0c930a8615d1b254db3d4488ee5b449b081f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef QR_GALOIS_H
#define QR_GALOIS_H
unsigned long gf_residue(unsigned long a, unsigned long m);
struct qr_bitstream * rs_generate_words(struct qr_bitstream * data,
size_t data_words,
size_t rs_words);
#endif
|