Posts Tagged ‘alloca’

alloca – memory allocator
USAGE
#include <alloca.h>

void *alloca(size_t size);

DESCRIPTION
The alloca() function allocates size bytes of space in the stack frame
of the caller. This temporary space is automatically [...]

Wednesday, August 26th, 2009 at 01:50 | Comments Off
Categories: A
TOP