LibC: Implement deprecated bcmp, bcopy, bzero

This commit is contained in:
2025-06-28 18:36:04 +03:00
parent 96f3efbf86
commit e4f025edd6
2 changed files with 21 additions and 0 deletions

View File

@@ -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