DADiSP Worksheet Functions > Function Categories > Macro and Command File Functions > ISMACRO
Determines whether a macro is defined.
ISMACRO("name")
"name"
-
A string, the macro name to test.
A 1 if the macro exists as specified, else returns a 0.
#define square(S) S*S
ismacro("square") returns the value 1.
ISVARIABLE