From: Jorge G. <cl...@us...> - 2007-05-27 01:34:14
|
Update of /cvsroot/easycalc/easycalc/include In directory sc8-pr-cvs17:/tmp/cvs-serv8888/include Modified Files: complex.h Log Message: complex support for rounding and truncation functions (ROUND, TRUNC, CEIL, FLOOR) Index: complex.h =================================================================== RCS file: /cvsroot/easycalc/easycalc/include/complex.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** complex.h 12 Sep 2006 19:40:55 -0000 1.9 --- complex.h 27 May 2007 01:34:09 -0000 1.10 *************** *** 31,34 **** --- 31,35 ---- CError cplx_oper(Functype *func,CodeStack *stack) MLIB; CError cplx_math(Functype *func,CodeStack *stack) MLIB; + CError cplx_round(Functype *func,CodeStack *stack) MLIB; Complex cplx_add(Complex arg1,Complex arg2) MLIB; Complex cplx_multiply(Complex arg1,Complex arg2) MLIB; |