You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
269 B

  1. #ifndef INPUTHANDLING_H
  2. #define INPUTHANDLING_H
  3. typedef enum{
  4. opAdd, opSub, opDiv, opMult, opExp, opLog
  5. }op;
  6. typedef struct {
  7. op funktionstyp;
  8. char* formel;
  9. double array[10];
  10. void* child;
  11. double result;
  12. }calc_op;
  13. extern void input();
  14. #endif // INPUTHANDLING_H