mirror of
https://github.com/jeremysrand/abCalc.git
synced 2024-12-28 12:32:55 +00:00
18 lines
226 B
C
18 lines
226 B
C
/*
|
|
abCExpReal.h
|
|
By: Jeremy Rand
|
|
*/
|
|
|
|
|
|
#ifndef ABCEXPREAL_H
|
|
#define ABCEXPREAL_H
|
|
|
|
|
|
struct abCalcExpr;
|
|
|
|
void abCalcExprRealInit(void);
|
|
|
|
void abCalcExprRealSet(struct abCalcExpr *expr, abCalcRealType value);
|
|
|
|
#endif
|