mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
10 lines
187 B
C
10 lines
187 B
C
#include <string.h>
|
|
|
|
int strcmp(const char *s1, const char *s2) {
|
|
while(*s1 != NULL && *s1 == *s2) {
|
|
s1++;
|
|
s2++;
|
|
}
|
|
return (*(unsigned char *)s1) - (*(unsigned char *)s2);
|
|
}
|