Go to the first, previous, next, last section, table of contents.


stackavail

Syntax

#include <stdlib.h>

int stackavail(void);

Description

This function returns the number of bytes that are available on the stack.

Portability

not ANSI, not POSIX

Example

printf("Available stack size is %d bytes\n", stackavail());


Go to the first, previous, next, last section, table of contents.