1#include "state.h"
2
3#include "../../msg.h"
4
5#include "../../rss/rss.h"
6
7#include "../filestack/filestack.h"
8
9typedef struct
10{
11    int active;
12    int elseCount;
13} State;
14
15extern State *st_stack;
16extern unsigned st_size;
17extern unsigned st_capacity;
18
19void st_available();            /* make sure there's enough room available */
20
21