]> saetta.ns0.it Git - libzakutils/commitdiff
Added macro ZU_STRCMP and ZU_STRTOL.
authorAndrea Zagli <azagli@libero.it>
Thu, 1 Apr 2021 10:25:48 +0000 (12:25 +0200)
committerAndrea Zagli <azagli@libero.it>
Thu, 1 Apr 2021 10:25:48 +0000 (12:25 +0200)
src/generic.h

index 7b9c5f5ba302a0d6ab6adf760885fbe25b4442e9..c8d5b6ab68d14a96f57837af570f8d4b92a0825c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * 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
@@ -77,6 +77,14 @@ gchar *zak_utils_ghashtable_get_gdatetime_format (GHashTable *ht, gconstpointer
 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