LibC: Implement deprecated bcmp, bcopy, bzero
This commit is contained in:
@@ -18,6 +18,11 @@ int strcasecmp_l(const char* s1, const char* s2, locale_t locale);
|
||||
int strncasecmp(const char* s1, const char* s2, size_t n);
|
||||
int strncasecmp_l(const char* s1, const char* s2, size_t n, locale_t locale);
|
||||
|
||||
// deprecated
|
||||
int bcmp(const void* s1, const void* s2, size_t n);
|
||||
void bcopy(const void* src, void* dest, size_t n);
|
||||
void bzero(void* s, size_t n);
|
||||
|
||||
__END_DECLS
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user