Nilorea Library
C utilities for networking, threading, graphics
n_stack.h
1
8#ifndef __N_STACK_HEADER
9#define __N_STACK_HEADER
10
11#ifdef __cplusplus
12extern "C"
13{
14#endif
15
22typedef struct STACK
23{
25 void **stack ;
27 unsigned int size ;
28} STACK ;
29
34#ifdef __cplusplus
35}
36#endif
37
38#endif
unsigned int size
Size of array.
Definition: n_stack.h:27
void ** stack
STACK array.
Definition: n_stack.h:25
STACK structure.
Definition: n_stack.h:23