1 /* contributed by demoncrat@efnet.#c on march 2001. */ 2 /* edited by megaton. added double precision numbers */ 3 4 enum { 5 CODESIZE = 1000, 6 STACKSIZE = 1000 7 }; 8 9 typedef double Value; 10 11 /* Set *result to the value of `expression'. 12 Return an error message string, or NULL if there was no error. */ 13 const char *dcalc (Value *result, const char *expression); |