10 lines
141 B
C
10 lines
141 B
C
#ifndef CALCULATOR_H
|
|
#define CALCULATOR_H
|
|
|
|
#define MAX_EXPR 512
|
|
#define MAX_STACK 256
|
|
|
|
double evaluate_expression(const char *expr);
|
|
|
|
#endif
|