aboutsummaryrefslogtreecommitdiffstats
path: root/memory/strcmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'memory/strcmp.c')
-rw-r--r--memory/strcmp.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/memory/strcmp.c b/memory/strcmp.c
new file mode 100644
index 0000000..604c4fc
--- /dev/null
+++ b/memory/strcmp.c
@@ -0,0 +1,6 @@
+#include "memory.h"
+
+int strcmp(char const *string1, char const *string2)
+{
+ return rawmemccmp(string1, string2, '\0');
+}