88759ceb8ad78e5f6a5c2320978273d36ca7b50e
[lunaix-os.git] / lunaix-os / libs / klibc / string / strcmp.c
1 #include <klibc/string.h>
2 #include <lunaix/compiler.h>
3
4 int weak
5 streq(const char* a, const char* b)
6 {
7     while (*a == *b) {
8         if (!(*a)) {
9             return 1;
10         }
11         a++;
12         b++;
13     }
14     return 0;
15 }