I wonder, why such function as:
-memset
-memmov
-memchr
-memcpy
Exist in string.h header file, but not in stdlib.h file, where there are ot
Because actually string.h is defined as a standard header that declares functions that treat array of characters and not only strings. Functions like memcpy and memset take arguments that are treated as pointers to the first element of an object of type array of characters.
(C99, 7.21.1p1) The header < string.h > declares one type and several functions, and defines one macro useful for manipulating arrays of character type and other objects treated as arrays of character type.