[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

stackavail

Syntax

 
#include <stdlib.h>

int stackavail(void);

Description

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

Portability

ANSI/ISO C No
POSIX No

Example

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