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 [...]
Categories: A
