summaryrefslogtreecommitdiffstats
path: root/src/string-utils.c
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-10-31 02:40:56 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-10-31 02:41:29 (EDT)
commit86e0b0d194a2b41255d11c1197d68d3e6b2fa999 (patch)
tree10746639fa5937396c2d6e60e96161b2fa6965b6 /src/string-utils.c
parent867b726401167a19a591bbd577982b060b2a583f (diff)
downloadmarquee-86e0b0d194a2b41255d11c1197d68d3e6b2fa999.zip
marquee-86e0b0d194a2b41255d11c1197d68d3e6b2fa999.tar.gz
marquee-86e0b0d194a2b41255d11c1197d68d3e6b2fa999.tar.bz2
atoi64(), parse_query_string(): Prefix function names with "mq_"
And update calls.
Diffstat (limited to 'src/string-utils.c')
-rw-r--r--src/string-utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/string-utils.c b/src/string-utils.c
index 8484468..ab7186c 100644
--- a/src/string-utils.c
+++ b/src/string-utils.c
@@ -25,7 +25,7 @@
#include <stdio.h>
gint64
-atoi64(const gchar *a)
+mq_atoi64(const gchar *a)
{
gint64 i64;
@@ -37,7 +37,7 @@ atoi64(const gchar *a)
}
GHashTable *
-parse_query_string(gchar *str)
+mq_parse_query_string(gchar *str)
{
GHashTable *hash_table;
gchar *key;