@ -71,4 +71,5 @@ void getnumbers(char* data, int length, calc_op* structure_ref){ //input sind: s
i++;
token = strtok(NULL, "+"); //Sucht von der letzten Plus-Stelle an weiter
}
structure_ref->arraylength=i; //Länge des Arrays (also zu berechnende Zahlen) gespeichert
@ -9,6 +9,7 @@ typedef struct {
op funktionstyp;
char* formel;
double array[10];
int arraylength;
void* child;
double result;
}calc_op;