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

#ifndef INPUTHANDLING_H
#define INPUTHANDLING_H
typedef enum{
opAdd, opSub, opDiv, opMult, opExp, opLog
}op;
typedef struct {
op funktionstyp;
char* formel;
double array[10];
void* child;
double result;
}calc_op;
extern void input();
#endif // INPUTHANDLING_H