mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-26 15:26:43 +00:00
6 lines
125 B
C
6 lines
125 B
C
#ifndef __STRNCMP_H__
|
|
#define __STRNCMP_H__
|
|
|
|
int strncmp(const char *s1, const char *s2, size_t n);
|
|
|
|
#endif // __STRNCMP_H__
|