docs: more xalloc.
This commit is contained in:
parent
3ec6498e83
commit
5da0562350
1 changed files with 2 additions and 2 deletions
|
|
@ -19,7 +19,7 @@ xmalloc():
|
||||||
|
|
||||||
xmallocz():
|
xmallocz():
|
||||||
|
|
||||||
exactly like xmalloc but will initialize the block with zero.
|
exactly like xmalloc but will initialize the block with zero's.
|
||||||
|
|
||||||
xrealloc():
|
xrealloc():
|
||||||
|
|
||||||
|
|
@ -33,5 +33,5 @@ xstrdup():
|
||||||
|
|
||||||
xfree():
|
xfree():
|
||||||
|
|
||||||
free's a previous allocated block pointed by 'ptr' that is allocated by xmalloc/malloc.
|
free's a previous allocated block (pointed to by 'ptr') that is allocated by xmalloc/malloc.
|
||||||
if compiled with the __DEBUG__ symbol, the function will not allow 'ptr' to be a NULL pointer
|
if compiled with the __DEBUG__ symbol, the function will not allow 'ptr' to be a NULL pointer
|
||||||
|
|
|
||||||
Reference in a new issue