defines.h 780 B

1234567891011121314
  1. #define MAXOP 100 /* max size of operand or operator */
  2. #define NUMBER '0' /* signal that a number was found */
  3. #define PEEK '1' /* signal that a peek command was found */
  4. #define SWAP '2' /* signal that a swap command was found */
  5. #define CLEAR '3' /* signal to clear the value stack */
  6. #define DUPE '4' /* signal to duplicate the top of the stack */
  7. #define SINE '5' /* signal that a sin command was found */
  8. #define EXP '6' /* signal that a exp command was found */
  9. #define POW '7' /* signal that a pow command was found */
  10. #define SET '8' /* signal that a variable set command was found */
  11. #define GET '9' /* signal that a variable get command was found */
  12. #define STRNG 'A' /* signal that a variable get command was found */