[hackers] [scc] [libc] Add strcmp() || Roberto E. Vargas Caballero
commit 830384d068b500a18a6aeb7a5a45e70bfad72d51
Author: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
AuthorDate: Thu Feb 16 21:05:39 2017 +0100
Commit: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
CommitDate: Thu Feb 16 21:05:39 2017 +0100
[libc] Add strcmp()
diff --git a/libc/src/Makefile b/libc/src/Makefile
index fc94ea8..125f3e3 100644
--- a/libc/src/Makefile
+++ b/libc/src/Makefile
_AT_@ -1,7 +1,7 @@
# See LICENSE file for copyright and license details.
.POSIX:
-LIBCOBJ = assert.o strcpy.o
+LIBCOBJ = assert.o strcpy.o strcmp.o
libc.a: $(LIBCOJB)
ar $(ARFLAGS) $_AT_ $?
diff --git a/libc/src/strcmp.c b/libc/src/strcmp.c
new file mode 100644
index 0000000..56ab3a4
--- /dev/null
+++ b/libc/src/strcmp.c
_AT_@ -0,0 +1,11 @@
+/* See LICENSE file for copyright and license details. */
+
+#include <string.h>
+
+int
+strcmp(const char *s1, const char *s2)
+{
+ while (*s1 && *s2 && *s1 != *s2)
+ ++s1, ++s2;
+ return *s1 - *s2;
+}
Received on Thu Feb 16 2017 - 21:24:56 CET
This archive was generated by hypermail 2.3.0
: Thu Feb 16 2017 - 21:36:27 CET