/*
- * Copyright (C) 2015-2018 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2021 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
void zak_utils_ghashtable_copy (GHashTable *ht_source, GHashTable *ht_dest);
+#define ZU_STRCMP(str, value) \
+ g_strcmp0 (str, value) == 0
+
+
+#define ZU_STRTOL(str) \
+ str == NULL ? 0 : strtol (str, NULL, 10)
+
+
G_END_DECLS