From b4248c6191a063d424434ca1921680eceb61d922 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Thu, 27 Feb 2014 10:12:29 +0100 Subject: rename functions and type definitions, introduce cqr_encode_qrcode_to_png() --- README.md | 26 +++--- cqrlogo.c | 30 +++---- lib/libcqrlogo.c | 243 ++++++++++++++++++++++++++++++------------------------- lib/libcqrlogo.h | 66 ++++++++------- 4 files changed, 190 insertions(+), 175 deletions(-) diff --git a/README.md b/README.md index 19668d2..83f7997 100644 --- a/README.md +++ b/README.md @@ -74,29 +74,22 @@ your custom needs. This is minimal sample source code: #include int main(int argc, char **argv) { - struct bitmap_t * bitmap; - struct png_t * png; - struct cqrconf_t cqrconf; - - cqrconf.scale = 2; - cqrconf.border = 1; - cqrconf.level = 0; - cqrconf.overwrite = 1; - - /* encode the QR-Code */ - if ((bitmap = encode_qrcode("https://github.com/eworm-de/cqrlogo", cqrconf)) == NULL) { - fprintf(stderr, "Could not generate QR-Code.\n"); - return EXIT_FAILURE; - } + struct cqr_png * png; + struct cqr_conf conf; + + conf.scale = 2; + conf.border = 1; + conf.level = 0; + conf.overwrite = 1; /* generate PNG data */ - if ((png = generate_png(bitmap, CQR_COMMENT|CQR_VERSION|CQR_LIBVERSION, "https://github.com/eworm-de/cqrlogo")) == NULL) { + if ((png = cqr_encode_qrcode_to_png("https://github.com/eworm-de/cqrlogo", conf, CQR_META_ALL)) == NULL) { fprintf(stderr, "Failed to generate PNG.\n"); return EXIT_FAILURE; } /* print HTTP header */ - printf("Content-Type: image/png\n\n"); + printf(cqr_mimeheader); /* write PNG data to stdout */ if (fwrite(png->buffer, png->size, 1, stdout) != 1) { @@ -105,7 +98,6 @@ your custom needs. This is minimal sample source code: } /* free memory we no longer need */ - bitmap_free(bitmap); if (png->size > 0) free(png->buffer); free(png); diff --git a/cqrlogo.c b/cqrlogo.c index a822c6d..48ba91a 100644 --- a/cqrlogo.c +++ b/cqrlogo.c @@ -18,9 +18,9 @@ int main(int argc, char **argv) { regmatch_t pmatch[1]; uint8_t https; - struct png_t * png; - struct bitmap_t * bitmap; - struct cqrconf_t cqrconf; + struct cqr_png * png; + struct cqr_bitmap * bitmap; + struct cqr_conf conf; #if HAVE_FCGI /* loop for requests */ @@ -34,10 +34,10 @@ int main(int argc, char **argv) { https = 0; /* these default values are defined in config.h */ - cqrconf.scale = QRCODE_SCALE; - cqrconf.border = QRCODE_BORDER; - cqrconf.level = QRCODE_LEVEL; - cqrconf.overwrite = ALLOW_OVERWRITE; + conf.scale = QRCODE_SCALE; + conf.border = QRCODE_BORDER; + conf.level = QRCODE_LEVEL; + conf.overwrite = ALLOW_OVERWRITE; /* check if we have environment variables from CGI */ if ((server_name = getenv("SERVER_NAME")) == NULL) { @@ -63,7 +63,7 @@ int main(int argc, char **argv) { pattern = malloc(sizeof(URLPATTERN) + strlen(server_name)); sprintf(pattern, URLPATTERN, server_name); if (regcomp(&preg, pattern, 0) != 0) { - fprintf(stderr, "regcomp() failed, returning nonzero\n"); + fprintf(stderr, "regcomp() failed, returning nonzero.\n"); return EXIT_FAILURE; } @@ -81,27 +81,27 @@ int main(int argc, char **argv) { uri = uri_server_name; } - cqrconf_file(server_name, &cqrconf); - cqrconf_string(getenv("QUERY_STRING"), &cqrconf); + cqr_conf_file(server_name, &conf); + cqr_conf_string(getenv("QUERY_STRING"), &conf); /* encode the QR-Code */ - if ((bitmap = encode_qrcode(uri, cqrconf)) == NULL) { + if ((bitmap = cqr_encode_qrcode_to_bitmap(uri, conf)) == NULL) { /* uri too long? retry with uri from server name */ uri = uri_server_name; - if ((bitmap = encode_qrcode(uri, cqrconf)) == NULL) { + if ((bitmap = cqr_encode_qrcode_to_bitmap(uri, conf)) == NULL) { fprintf(stderr, "Could not generate QR-Code.\n"); return EXIT_FAILURE; } } /* generate PNG data */ - if ((png = generate_png(bitmap, CQR_COMMENT|CQR_REFERER|CQR_VERSION|CQR_LIBVERSION, uri)) == NULL) { + if ((png = cqr_bitmap_to_png(bitmap, uri, CQR_META_ALL)) == NULL) { fprintf(stderr, "Failed to generate PNG.\n"); return EXIT_FAILURE; } /* print HTTP header */ - printf("Content-Type: image/png\n\n"); + printf(cqr_mimeheader); /* write PNG data to stdout */ if (fwrite(png->buffer, png->size, 1, stdout) != 1) { @@ -114,7 +114,7 @@ int main(int argc, char **argv) { free(uri_server_name); if (stolen) free(stolen); - bitmap_free(bitmap); + cqr_bitmap_free(bitmap); if (png->size > 0) free(png->buffer); free(png); diff --git a/lib/libcqrlogo.c b/lib/libcqrlogo.c index 5a83515..12bc43b 100644 --- a/lib/libcqrlogo.c +++ b/lib/libcqrlogo.c @@ -11,11 +11,11 @@ /* define structs and functions */ #include "libcqrlogo.h" -/*** png_write_stdout ***/ -void png_write_fn(png_structp png_ptr, png_bytep data, png_size_t length) { - struct png_t * png; +/*** cqr_png_write_fn ***/ +void cqr_png_write_fn(png_structp png_ptr, png_bytep data, png_size_t length) { + struct cqr_png * png; - png = (struct png_t *)png_get_io_ptr(png_ptr); + png = (struct cqr_png *)png_get_io_ptr(png_ptr); png->buffer = realloc(png->buffer, png->size + length); @@ -25,8 +25,8 @@ void png_write_fn(png_structp png_ptr, png_bytep data, png_size_t length) { } #if defined PNG_TEXT_SUPPORTED -/*** add_png_text ***/ -png_text * add_png_text(png_text *pngtext, unsigned int *textcount, char *key, char *text) { +/*** cqr_png_add_text ***/ +png_text * cqr_png_add_text(png_text *pngtext, unsigned int *textcount, char *key, char *text) { pngtext = realloc(pngtext, ((*textcount) + 1) * sizeof(png_text)); pngtext[*textcount].compression = PNG_TEXT_COMPRESSION_zTXt; @@ -38,16 +38,89 @@ png_text * add_png_text(png_text *pngtext, unsigned int *textcount, char *key, c } #endif -/*** generate_png ***/ -struct png_t * generate_png (struct bitmap_t *bitmap, const uint8_t meta, const char *uri) { +/*** cqr_bitmap_new ***/ +struct cqr_bitmap * cqr_bitmap_new(int width, int height) { + struct cqr_bitmap *bitmap; + + if ((bitmap = malloc(sizeof(struct cqr_bitmap))) == NULL) + return NULL; + + bitmap->width = width; + bitmap->height = height; + if ((bitmap->pixel = malloc(width * height * sizeof(uint8_t))) == NULL) { + free(bitmap); + return NULL; + } + + /* initialize with white */ + memset(bitmap->pixel, 0xff, width * height); + + return bitmap; +} + +/*** cqr_bitmap_free ***/ +void cqr_bitmap_free(struct cqr_bitmap * bitmap) { + free(bitmap->pixel); + free(bitmap); +} + +/*** cqr_encode_qrcode_to_bitmap ***/ +struct cqr_bitmap * cqr_encode_qrcode_to_bitmap(const char *text, const struct cqr_conf conf) { + QRcode *qrcode; + struct cqr_bitmap *bitmap, *scaled; + int i, j, k, l; + unsigned char *data; + + qrcode = QRcode_encodeString8bit(text, 0, conf.level); + + /* this happens if the string is too long + * possibly we have an URL (referer) that is too long, so the code + * automatically falls back to http_server (see main()) */ + if (qrcode == NULL) + return NULL; + + data = qrcode->data; + + /* wirte QR code to bitmap */ + if ((bitmap = cqr_bitmap_new(qrcode->width + conf.border * 2, qrcode->width + conf.border * 2)) == NULL) + return NULL; + for (i = conf.border; i < qrcode->width + conf.border; i++) + for (j = conf.border; j < qrcode->width + conf.border; j++) { + bitmap->pixel[i * (qrcode->width + conf.border * 2) + j] = !(*data & 0x1) * 0xff; + data++; + } + + QRcode_free(qrcode); + + if (conf.scale == 1) + return bitmap; + + /* scale bitmap */ + if ((scaled = cqr_bitmap_new(bitmap->width * conf.scale, bitmap->height * conf.scale)) == NULL) + return NULL; + for (i = 0; i < bitmap->height; i++) + for (j = 0; j < bitmap->width; j++) + for (k = 0; k < conf.scale; k++) + for (l = 0; l < conf.scale; l++) + scaled->pixel[i * bitmap->width * conf.scale * conf.scale + k * bitmap->width * conf.scale + j * conf.scale + l] = + bitmap->pixel[i * bitmap->width + j]; + + + cqr_bitmap_free(bitmap); + + return scaled; +} + +/*** cqr_bitmap_to_png ***/ +struct cqr_png * cqr_bitmap_to_png(struct cqr_bitmap *bitmap, const char *text, const uint8_t meta) { png_structp png_ptr = NULL; png_infop info_ptr = NULL; png_byte ** row_pointers = NULL; unsigned int x, y; uint8_t bit, byte; - struct png_t * png; + struct cqr_png * png; - png = malloc(sizeof(struct png_t)); + png = malloc(sizeof(struct cqr_png)); png->buffer = NULL; png->size = 0; @@ -73,39 +146,39 @@ struct png_t * generate_png (struct bitmap_t *bitmap, const uint8_t meta, const #if defined PNG_TEXT_SUPPORTED unsigned int textcount = 0; png_text *pngtext = NULL; - char *curi = NULL, *libsstr = NULL, *qrver; + char *referer = NULL, *libsstr = NULL, *qrver; if (meta) { - if (meta & CQR_COMMENT) - pngtext = add_png_text(pngtext, &textcount, "comment", COMMENTSTR); + if (meta & CQR_META_COMMENT) + pngtext = cqr_png_add_text(pngtext, &textcount, "comment", CQR_COMMENTSTR); - if (meta & CQR_REFERER) { - curi = strdup(uri); + if (meta & CQR_META_REFERER) { + referer = strdup(text); /* text in png file may have a max length of 79 chars */ - if (strlen(curi) > 79) - sprintf(curi + 76, "..."); + if (strlen(referer) > 79) + sprintf(referer + 76, "..."); - pngtext = add_png_text(pngtext, &textcount, "referer", curi); + pngtext = cqr_png_add_text(pngtext, &textcount, "referer", referer); } - if (meta & CQR_VERSION) - pngtext = add_png_text(pngtext, &textcount, "version", VERSIONSTR); + if (meta & CQR_META_VERSION) + pngtext = cqr_png_add_text(pngtext, &textcount, "version", CQR_VERSIONSTR); - if (meta & CQR_LIBVERSION) { + if (meta & CQR_META_LIBVERSION) { qrver = QRcode_APIVersionString(); - libsstr = malloc(sizeof(LIBSSTR) + strlen(qrver) + strlen(png_libpng_ver) + strlen(zlib_version)); - sprintf(libsstr, LIBSSTR, qrver, png_libpng_ver, zlib_version); + libsstr = malloc(sizeof(CQR_LIBSSTR) + strlen(qrver) + strlen(png_libpng_ver) + strlen(zlib_version)); + sprintf(libsstr, CQR_LIBSSTR, qrver, png_libpng_ver, zlib_version); - pngtext = add_png_text(pngtext, &textcount, "libs", libsstr); + pngtext = cqr_png_add_text(pngtext, &textcount, "libs", libsstr); } png_set_text(png_ptr, info_ptr, pngtext, textcount); png_free (png_ptr, pngtext); - if (curi) - free(curi); + if (referer) + free(referer); if (libsstr) free(libsstr); } @@ -128,90 +201,36 @@ struct png_t * generate_png (struct bitmap_t *bitmap, const uint8_t meta, const /* with FastCGI we can not just open stdout for writing... * define a write function instead */ - png_set_write_fn(png_ptr, png, png_write_fn, NULL); + png_set_write_fn(png_ptr, png, cqr_png_write_fn, NULL); - png_set_rows (png_ptr, info_ptr, row_pointers); - png_write_png (png_ptr, info_ptr, PNG_TRANSFORM_IDENTITY, NULL); + png_set_rows(png_ptr, info_ptr, row_pointers); + png_write_png(png_ptr, info_ptr, PNG_TRANSFORM_IDENTITY, NULL); for (y = 0; y < bitmap->height; ++y) - png_free (png_ptr, row_pointers[y]); - png_free (png_ptr, row_pointers); + png_free(png_ptr, row_pointers[y]); + png_free(png_ptr, row_pointers); png_destroy_write_struct(&png_ptr, &info_ptr); return png; } -/*** bitmap_new ***/ -struct bitmap_t * bitmap_new(int width, int height) { - struct bitmap_t *bitmap; +/*** 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) { + struct cqr_bitmap * bitmap; + struct cqr_png * png; - if ((bitmap = malloc(sizeof(struct bitmap_t))) == NULL) - return NULL; - - bitmap->width = width; - bitmap->height = height; - if ((bitmap->pixel = malloc(width * height * sizeof(uint8_t))) == NULL) { - free(bitmap); + if ((bitmap = cqr_encode_qrcode_to_bitmap(text, conf)) == NULL) { + fprintf(stderr, "Failed encoding QR-Code to bitmap.\n"); return NULL; } - - /* initialize with white */ - memset(bitmap->pixel, 0xff, width * height); - - return bitmap; -} - -/*** bitmap_free ***/ -void bitmap_free(struct bitmap_t * bitmap) { - free(bitmap->pixel); - free(bitmap); -} - -/*** encode_qrcode ***/ -struct bitmap_t * encode_qrcode (const char *text, const struct cqrconf_t cqrconf) { - QRcode *qrcode; - struct bitmap_t *bitmap, *scaled; - int i, j, k, l; - unsigned char *data; - - qrcode = QRcode_encodeString8bit(text, 0, cqrconf.level); - - /* this happens if the string is too long - * possibly we have an URL (referer) that is too long, so the code - * automatically falls back to http_server (see main()) */ - if (qrcode == NULL) - return NULL; - - data = qrcode->data; - - /* wirte QR code to bitmap */ - if ((bitmap = bitmap_new(qrcode->width + cqrconf.border * 2, qrcode->width + cqrconf.border * 2)) == NULL) - return NULL; - for (i = cqrconf.border; i < qrcode->width + cqrconf.border; i++) - for (j = cqrconf.border; j < qrcode->width + cqrconf.border; j++) { - bitmap->pixel[i * (qrcode->width + cqrconf.border * 2) + j] = !(*data & 0x1) * 0xff; - data++; - } - - QRcode_free(qrcode); - - if (cqrconf.scale == 1) - return bitmap; - - /* cqrconf.scale bitmap */ - if ((scaled = bitmap_new(bitmap->width * cqrconf.scale, bitmap->height * cqrconf.scale)) == NULL) + if ((png = cqr_bitmap_to_png(bitmap, text, meta)) == NULL) { + fprintf(stderr, "Failed to convert bitmap to png.\n"); return NULL; - for (i = 0; i < bitmap->height; i++) - for (j = 0; j < bitmap->width; j++) - for (k = 0; k < cqrconf.scale; k++) - for (l = 0; l < cqrconf.scale; l++) - scaled->pixel[i * bitmap->width * cqrconf.scale * cqrconf.scale + k * bitmap->width * cqrconf.scale + j * cqrconf.scale + l] = - bitmap->pixel[i * bitmap->width + j]; - + } - bitmap_free(bitmap); + cqr_bitmap_free(bitmap); - return scaled; + return png; } /*** get_query_value ***/ @@ -264,8 +283,8 @@ unsigned int get_ini_value(dictionary * ini, uint8_t type, const char * section, return value; } -/*** cqrconf_file ***/ -void cqrconf_file(const char * server_name, struct cqrconf_t * cqrconf) { +/*** cqr_conf_file ***/ +void cqr_conf_file(const char * server_name, struct cqr_conf * conf) { dictionary * ini; /* parse config file */ @@ -274,34 +293,34 @@ void cqrconf_file(const char * server_name, struct cqrconf_t * cqrconf) { return; } - cqrconf->scale = get_ini_value(ini, 1, "general", "scale", cqrconf->scale, 1, QRCODE_MAX_SCALE); - cqrconf->border = get_ini_value(ini, 1, "general", "border", cqrconf->border, 0, QRCODE_MAX_BORDER); - cqrconf->level = get_ini_value(ini, 1, "general", "level", cqrconf->level, QR_ECLEVEL_L, QR_ECLEVEL_H); - cqrconf->overwrite = get_ini_value(ini, 0, "general", "allow overwrite", cqrconf->overwrite, false, true); + conf->scale = get_ini_value(ini, 1, "general", "scale", conf->scale, 1, QRCODE_MAX_SCALE); + conf->border = get_ini_value(ini, 1, "general", "border", conf->border, 0, QRCODE_MAX_BORDER); + conf->level = get_ini_value(ini, 1, "general", "level", conf->level, QR_ECLEVEL_L, QR_ECLEVEL_H); + conf->overwrite = get_ini_value(ini, 0, "general", "allow overwrite", conf->overwrite, false, true); - cqrconf->scale = get_ini_value(ini, 1, server_name, "scale", cqrconf->scale, 1, QRCODE_MAX_SCALE); - cqrconf->border = get_ini_value(ini, 1, server_name, "border", cqrconf->border, 0, QRCODE_MAX_BORDER); - cqrconf->level = get_ini_value(ini, 1, server_name, "level", cqrconf->level, QR_ECLEVEL_L, QR_ECLEVEL_H); - cqrconf->overwrite = get_ini_value(ini, 0, server_name, "allow overwrite", cqrconf->overwrite, false, true); + conf->scale = get_ini_value(ini, 1, server_name, "scale", conf->scale, 1, QRCODE_MAX_SCALE); + conf->border = get_ini_value(ini, 1, server_name, "border", conf->border, 0, QRCODE_MAX_BORDER); + conf->level = get_ini_value(ini, 1, server_name, "level", conf->level, QR_ECLEVEL_L, QR_ECLEVEL_H); + conf->overwrite = get_ini_value(ini, 0, server_name, "allow overwrite", conf->overwrite, false, true); /* done reading config file, free */ iniparser_freedict(ini); } -/*** cqrconf_string ***/ -void cqrconf_string(const char * query_string, struct cqrconf_t * cqrconf) { - if (cqrconf->overwrite == false) +/*** cqr_conf_string ***/ +void cqr_conf_string(const char * query_string, struct cqr_conf * conf) { + if (conf->overwrite == false) return; if (query_string == NULL) return; /* do we have a special scale? */ - cqrconf->scale = get_query_value(query_string, "scale", cqrconf->scale, 1, QRCODE_MAX_SCALE); + conf->scale = get_query_value(query_string, "scale", conf->scale, 1, QRCODE_MAX_SCALE); /* width of the border? */ - cqrconf->border = get_query_value(query_string, "border", cqrconf->border, 0, QRCODE_MAX_BORDER); + conf->border = get_query_value(query_string, "border", conf->border, 0, QRCODE_MAX_BORDER); /* error correction level? */ - cqrconf->level = get_query_value(query_string, "level", cqrconf->level, QR_ECLEVEL_L, QR_ECLEVEL_H); + conf->level = get_query_value(query_string, "level", conf->level, QR_ECLEVEL_L, QR_ECLEVEL_H); } diff --git a/lib/libcqrlogo.h b/lib/libcqrlogo.h index 7ccd4cf..c5322a2 100644 --- a/lib/libcqrlogo.h +++ b/lib/libcqrlogo.h @@ -20,65 +20,69 @@ #include /* a bitmap */ -struct bitmap_t { +struct cqr_bitmap { unsigned int width; unsigned int height; uint8_t *pixel; }; /* finished PNG image */ -struct png_t { +struct cqr_png { unsigned char * buffer; size_t size; }; /* config */ -struct cqrconf_t { +struct cqr_conf { uint8_t scale; uint8_t border; uint8_t level; bool overwrite; }; -#define CQR_COMMENT 0x1 -#define CQR_REFERER 0x2 -#define CQR_VERSION 0x4 -#define CQR_LIBVERSION 0x8 +const char * cqr_mimeheader = "Content-Type: image/png\n\n"; -#define COMMENTSTR "QR-Code created by cqrlogo - https://github.com/eworm-de/cqrlogo" -#define VERSIONSTR VERSION " (" __DATE__ ", " __TIME__ ")" -#define LIBSSTR "libqrencode %s, libpng %s, zlib %s" +#define CQR_META_COMMENT 0x1 +#define CQR_META_REFERER 0x2 +#define CQR_META_VERSION 0x4 +#define CQR_META_LIBVERSION 0x8 +#define CQR_META_ALL CQR_META_COMMENT + CQR_META_REFERER + CQR_META_VERSION + CQR_META_LIBVERSION -/*** png_write_stdout ***/ -void png_write_fn(png_structp png_ptr, png_bytep data, png_size_t length); +#define CQR_COMMENTSTR "QR-Code created by cqrlogo - https://github.com/eworm-de/cqrlogo" +#define CQR_VERSIONSTR VERSION " (" __DATE__ ", " __TIME__ ")" +#define CQR_LIBSSTR "libqrencode %s, libpng %s, zlib %s" + +/*** cqr_png_write_fn ***/ +void cqr_png_write_fn(png_structp png_ptr, png_bytep data, png_size_t length); #if defined PNG_TEXT_SUPPORTED -/*** add_png_text ***/ -png_text * add_png_text(png_text *pngtext, unsigned int *textcount, char *key, char *text); +/*** cqr_png_add_text ***/ +png_text * cqr_png_add_text(png_text *pngtext, unsigned int *textcount, char *key, char *text); #endif -/*** generate_png ***/ -struct png_t * generate_png (struct bitmap_t *bitmap, const uint8_t meta, const char *uri); - -/*** bitmap_new ***/ -struct bitmap_t * bitmap_new(int width, int height); -/*** bitmap_free ***/ -void bitmap_free(struct bitmap_t * bitmap); +/*** cqr_bitmap_new ***/ +struct cqr_bitmap * cqr_bitmap_new(int width, int height); +/*** cqr_bitmap_free ***/ +void cqr_bitmap_free(struct cqr_bitmap * bitmap); -/*** encode_qrcode ***/ -struct bitmap_t * encode_qrcode (const char *text, const struct cqrconf_t); +/*** cqr_encode_qrcode_to_bitmap ***/ +struct cqr_bitmap * cqr_encode_qrcode_to_bitmap(const char *text, const struct cqr_conf conf); +/*** cqr_bitmap_to_png ***/ +struct cqr_png * cqr_bitmap_to_png(struct cqr_bitmap *bitmap, const char *text, const uint8_t meta); +/*** 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); -/*** get_query_value ***/ -unsigned int get_query_value(const char *query_string, const char *pattern, +/*** cqr_get_query_value ***/ +unsigned int cqr_get_query_value(const char *query_string, const char *pattern, unsigned int value, unsigned int min, unsigned int max); -/*** get_ini_value ***/ -unsigned int get_ini_value(dictionary * ini, uint8_t type, const char * section, const char * parameter, +/*** cqr_get_ini_value ***/ +unsigned int cqr_get_ini_value(dictionary * ini, uint8_t type, const char * section, const char * parameter, unsigned int value, unsigned int min, unsigned int max); -/*** cqrconf_file ***/ -void cqrconf_file(const char * server_name, struct cqrconf_t * cqrconf); -/*** cqrconf_string ***/ -void cqrconf_string(const char * query_string, struct cqrconf_t * cqrconf); +/*** cqr_conf_file ***/ +void cqr_conf_file(const char * server_name, struct cqr_conf * conf); +/*** cqr_conf_string ***/ +void cqr_conf_string(const char * query_string, struct cqr_conf * conf); #endif /* _LIBCQRLOGO_H */ -- cgit v1.2.3-54-g00ecf