usaa25/sk2/calculator.h
2026-01-25 23:20:37 +01:00

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