Created
June 19, 2015 01:50
-
-
Save shichao-an/c229d6cc4ac8d310567b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <string.h> | |
| void *memset(void *dest, int c, size_t len); | |
| void *memcpy(void *dest, const void *src, size_t nbytes); | |
| int memcmp(const void *ptr1, const void *ptr2, size_t nbytes); | |
| /* Returns: 0 if equal, <0 or >0 if unequal (see text) */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment