11 lines
206 B
C
11 lines
206 B
C
#ifndef CALCOP_H_
|
|
#define CALCOP_H_
|
|
|
|
#include "state.h"
|
|
|
|
void add(struct State* state);
|
|
void sub(struct State* state);
|
|
void mult(struct State* state);
|
|
void divide(struct State* state);
|
|
|
|
#endif // CALCOP_H_
|