mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2025-06-07 08:14:48 +00:00
7 lines
121 B
C
7 lines
121 B
C
#ifndef __MEMCMP_H__
|
|
#define __MEMCMP_H__
|
|
|
|
int memcmp(const void *s1, const void *s2, size_t n);
|
|
|
|
#endif // __MEMCMP_H__
|