Last active
August 29, 2015 14:22
-
-
Save shichao-an/e4b320547e3c303af467 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 <stdlib.h> | |
| void *malloc(size_t size); | |
| void *calloc(size_t nobj, size_t size); | |
| void *realloc(void *ptr, size_t newsize); | |
| /* All three return: non-null pointer if OK, NULL on error */ | |
| void free(void *ptr); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment