summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/pervasive.h')
-rw-r--r--src/pervasive.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pervasive.h b/src/pervasive.h
index 0dd67fe..6c08305 100644
--- a/src/pervasive.h
+++ b/src/pervasive.h
@@ -11,4 +11,6 @@
/* strncmp stops at '\0' and strlen does not count '\0'. */
#define RELABSD_IS_PREFIX(a, b) (strncmp(a, b, strlen(a)) == 0)
+#define RELABSD_STRING_EQUALS(a, b) (strcmp(a, b) == 0)
+
#endif