Buffer Manipulation Functions In C
memchr = Returns a pointer to the first occurrence, within a specified number of characters, of a given character in the buffer.
memcmp = Compares a specified number of characters from two buffers.
memcpy = Copies a specified number of characters from one buffer to another
memicmp = Compares a specified number of characters from two buffers without regard to the case of the characters
memmove = Copies a specified number of characters from one buffer to another
memset = Uses a given character to initialize a specified number of bytes in the buffer
No comments:
Post a Comment