Forked from
ESS EPICS Environment / wrappers / e3-require
1171 commits behind the upstream repository.
-
Jeong Han Lee authored
b3bc2ac2
Jeong Han Lee authoredb3bc2ac2
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
expr.h 525 B
#ifndef expr_h
#define expr_h
#ifdef __cplusplus
extern {
#endif
extern int exprDebug;
size_t replaceExpressions(const char* source, char* buffer, size_t buffersize);
/* Resolve integer expressions that are either free standing
* or in parentheses () embedded in an unquoted word.
* Do not resolve expressions in single or double quoted strings.
* An expression optionally starts with a integer format such as %x.
* It consists of integer numbers, operators and parentheses ().
*/
#ifdef __cplusplus
}
#endif
#endif