mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-26 23:36:32 +00:00
7 lines
111 B
C
7 lines
111 B
C
|
#ifndef __STRCMP_H__
|
||
|
#define __STRCMP_H__
|
||
|
|
||
|
int strcmp(const char *s1, const char *s2);
|
||
|
|
||
|
#endif // __STRCMP_H__
|