about summary refs log tree commit diff stats
path: root/src/common.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2017-03-25 02:07:27 +0000
committerJames Booth <boothj5@gmail.com>2017-03-25 02:07:27 +0000
commit97edebadcb1f3e500b2cfd681f38e730a52c248a (patch)
treec276a4e6a27106c8da77edec0124631105939766 /src/common.c
parent131c98b30521d6a1df86613b03532541c65dae53 (diff)
downloadprofani-tty-97edebadcb1f3e500b2cfd681f38e730a52c248a.tar.gz
Update Glib dependency to 2.40
Diffstat (limited to 'src/common.c')
-rw-r--r--src/common.c48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/common.c b/src/common.c
index 898f62fa..d9c7d73f 100644
--- a/src/common.c
+++ b/src/common.c
@@ -67,54 +67,6 @@ static unsigned long unique_id = 0;
 
 static size_t _data_callback(void *ptr, size_t size, size_t nmemb, void *data);
 
-// taken from glib 2.30.3
-gchar*
-p_utf8_substring(const gchar *str, glong start_pos, glong end_pos)
-{
-    gchar *start, *end, *out;
-
-    start = g_utf8_offset_to_pointer (str, start_pos);
-    end = g_utf8_offset_to_pointer (start, end_pos - start_pos);
-
-    out = g_malloc (end - start + 1);
-    memcpy (out, start, end - start);
-    out[end - start] = 0;
-
-    return out;
-}
-
-void
-p_slist_free_full(GSList *items, GDestroyNotify free_func)
-{
-    g_slist_foreach (items, (GFunc) free_func, NULL);
-    g_slist_free (items);
-}
-
-void
-p_list_free_full(GList *items, GDestroyNotify free_func)
-{
-    g_list_foreach (items, (GFunc) free_func, NULL);
-    g_list_free (items);
-}
-
-gboolean
-p_hash_table_add(GHashTable *hash_table, gpointer key)
-{
-    // doesn't handle when key exists, but value == NULL
-    gpointer found = g_hash_table_lookup(hash_table, key);
-    g_hash_table_replace(hash_table, key, key);
-
-    return (found == NULL);
-}
-
-gboolean
-p_hash_table_contains(GHashTable *hash_table, gconstpointer key)
-{
-    // doesn't handle when key exists, but value == NULL
-    gpointer found = g_hash_table_lookup(hash_table, key);
-    return (found != NULL);
-}
-
 gboolean
 create_dir(char *name)
 {