about summary refs log blame commit diff stats
path: root/state.h
blob: 54b298110e1e8e59e6cbcaef6914c6673a538312 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                         





                       





                    

                      
  

                                                                           


        
#ifndef STATE_H
#define STATE_H

#include <stdio.h>

#define STACK_SIZE 100

typedef struct {
  double val[STACK_SIZE];
  int count;
} stack;

typedef struct {
  char *name;
  stack (*exec)(stack);
  char *description;
} command;

typedef struct {
  int command_count;
  FILE *defbuf;
  FILE *defout;
  char last_op;
  char *prompt;
  stack stack;

  /* btree elements */
  
  char **sorted_names; /* sorted function names */
  stack *((*exec)(stack)); /* sorted function calls, same order as above */
} state;

#endif