10 lines
151 B
C
10 lines
151 B
C
#ifndef CALCULATOR_H
|
|
#define CALCULATOR_H
|
|
|
|
#include "Infobox.h"
|
|
|
|
double evaluate(const char *expr);
|
|
InfoBox fetch_calc_data(char *math_input);
|
|
|
|
#endif
|