Archived
1
0
Fork 0

docs: more xalloc.

This commit is contained in:
H Hautakoski 2010-09-21 09:07:07 +02:00 committed by Henrik Hautakoski
parent 3ec6498e83
commit 5da0562350

View file

@ -19,7 +19,7 @@ xmalloc():
xmallocz():
exactly like xmalloc but will initialize the block with zero.
exactly like xmalloc but will initialize the block with zero's.
xrealloc():
@ -33,5 +33,5 @@ xstrdup():
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