mirror of
https://github.com/jeremysrand/abCalc.git
synced 2024-11-23 08:35:43 +00:00
20 lines
225 B
C
20 lines
225 B
C
/*
|
|
abCExprInt.h
|
|
By: Jeremy Rand
|
|
*/
|
|
|
|
|
|
#ifndef ABCEXPRINT_H
|
|
#define ABCEXPRINT_H
|
|
|
|
|
|
struct abCalcExpr;
|
|
|
|
|
|
void abCalcExprIntInit(void);
|
|
|
|
void abCalcExprIntSet(struct abCalcExpr *expr, abCalcIntType value);
|
|
|
|
|
|
#endif
|