diff options
Diffstat (limited to 'snc.h')
-rw-r--r-- | snc.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -20,6 +20,11 @@ along with this program; if not, see <http://www.gnu.org/licenses/>. ***/ +struct stack { + char ch; + struct stack *next; +}; + enum { SNC_ARABIC, SNC_ROMAN, |