diff options
author | Christian Hesse <mail@eworm.de> | 2016-05-09 11:40:34 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2016-05-09 11:40:34 +0200 |
commit | b6b192b49333ff18e1a4df53f27fc4873bf1ac25 (patch) | |
tree | 127345f6e6d0e0e9bcf9852b6ee1cf0bec79e7a7 /lib/libcqrlogo.h | |
parent | de5cecd9bd63c0f7732fe266ee95e878d33ba61f (diff) | |
download | cqrlogo-b6b192b49333ff18e1a4df53f27fc4873bf1ac25.tar.gz cqrlogo-b6b192b49333ff18e1a4df53f27fc4873bf1ac25.tar.zst |
fix function names
get_query_value() -> cqr_get_query_uint()
Diffstat (limited to 'lib/libcqrlogo.h')
-rw-r--r-- | lib/libcqrlogo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcqrlogo.h b/lib/libcqrlogo.h index 110a0ab..4be5087 100644 --- a/lib/libcqrlogo.h +++ b/lib/libcqrlogo.h @@ -77,8 +77,8 @@ struct cqr_png * cqr_bitmap_to_png(struct cqr_bitmap *bitmap, const char *text, /*** cqr_encode_qrcode_to_png ***/ struct cqr_png * cqr_encode_qrcode_to_png(const char *text, const struct cqr_conf conf, const uint8_t meta); -/*** cqr_get_query_value ***/ -unsigned int cqr_get_query_value(const char *query_string, const char *pattern, +/*** cqr_get_query_uint ***/ +unsigned int cqr_get_query_uint(const char *query_string, const char *pattern, unsigned int value, unsigned int min, unsigned int max); /*** cqr_get_ini_value ***/ unsigned int cqr_get_ini_value(dictionary * ini, uint8_t type, const char * section, const char * parameter, |