Skip to content

Commit

Permalink
QRcode_new() is now open for testers.
Browse files Browse the repository at this point in the history
  • Loading branch information
fukuchi committed Jan 18, 2010
1 parent b3e7123 commit 3a287d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions qrencode.c
Original file line number Diff line number Diff line change
Expand Up @@ -399,9 +399,7 @@ extern unsigned char *FrameFiller_test(int version)
free(filler);
return frame;
}
#endif

#ifdef WITH_TESTS
extern unsigned char *FrameFiller_testMQR(int version)
{
int width;
Expand Down Expand Up @@ -438,7 +436,7 @@ extern unsigned char *FrameFiller_testMQR(int version)
* QR-code encoding
*****************************************************************************/

static QRcode *QRcode_new(int version, int width, unsigned char *data)
__STATIC QRcode *QRcode_new(int version, int width, unsigned char *data)
{
QRcode *qrcode;

Expand Down
1 change: 1 addition & 0 deletions qrencode_inner.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,6 @@ extern unsigned char *FrameFiller_testMQR(int version);
*****************************************************************************/
extern QRcode *QRcode_encodeMask(QRinput *input, int mask);
extern QRcode *QRcode_encodeMaskMQR(QRinput *input, int mask);
extern QRcode *QRcode_new(int version, int width, unsigned char *data);

#endif /* __QRENCODE_INNER_H__ */

0 comments on commit 3a287d8

Please sign in to comment.