├── .cdtproject ├── .project ├── LICENSE.txt ├── MathLDoc.md ├── MathLib.mcp ├── MathLib.prc ├── README.md ├── Rsc ├── MathLib.rsrc └── Resource.frk │ └── MathLib.rsrc └── Src ├── Makefile ├── MathLib.c ├── MathLib.def ├── MathLib.h ├── MathLibPrv.h ├── e_acos.c ├── e_acosh.c ├── e_asin.c ├── e_atan2.c ├── e_atanh.c ├── e_cosh.c ├── e_exp.c ├── e_fmod.c ├── e_hypot.c ├── e_log.c ├── e_log10.c ├── e_pow.c ├── e_rem_pio2.c ├── e_remainder.c ├── e_scalb.c ├── e_sinh.c ├── e_sqrt.c ├── k_cos.c ├── k_rem_pio2.c ├── k_sin.c ├── k_tan.c ├── math.h ├── math_private.h ├── mathcalls.c ├── s_asinh.c ├── s_atan.c ├── s_cbrt.c ├── s_ceil.c ├── s_copysign.c ├── s_cos.c ├── s_expm1.c ├── s_fabs.c ├── s_finite.c ├── s_floor.c ├── s_frexp.c ├── s_ilogb.c ├── s_isinf.c ├── s_isnan.c ├── s_ldexp.c ├── s_log1p.c ├── s_log2.c ├── s_logb.c ├── s_modf.c ├── s_nextafter.c ├── s_rint.c ├── s_round.c ├── s_scalbn.c ├── s_signbit.c ├── s_significand.c ├── s_sin.c ├── s_sincos.c ├── s_tan.c ├── s_tanh.c ├── s_trunc.c └── startup.c /.cdtproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/.cdtproject -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/.project -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MathLDoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/MathLDoc.md -------------------------------------------------------------------------------- /MathLib.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/MathLib.mcp -------------------------------------------------------------------------------- /MathLib.prc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/MathLib.prc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/README.md -------------------------------------------------------------------------------- /Rsc/MathLib.rsrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rsc/Resource.frk/MathLib.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Rsc/Resource.frk/MathLib.rsrc -------------------------------------------------------------------------------- /Src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/Makefile -------------------------------------------------------------------------------- /Src/MathLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/MathLib.c -------------------------------------------------------------------------------- /Src/MathLib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/MathLib.def -------------------------------------------------------------------------------- /Src/MathLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/MathLib.h -------------------------------------------------------------------------------- /Src/MathLibPrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/MathLibPrv.h -------------------------------------------------------------------------------- /Src/e_acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/e_acos.c -------------------------------------------------------------------------------- /Src/e_acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/e_acosh.c -------------------------------------------------------------------------------- /Src/e_asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/e_asin.c -------------------------------------------------------------------------------- /Src/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/e_atan2.c -------------------------------------------------------------------------------- /Src/e_atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/e_atanh.c -------------------------------------------------------------------------------- /Src/e_cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/e_cosh.c -------------------------------------------------------------------------------- /Src/e_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/e_exp.c -------------------------------------------------------------------------------- /Src/e_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/e_fmod.c -------------------------------------------------------------------------------- /Src/e_hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/e_hypot.c -------------------------------------------------------------------------------- /Src/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/e_log.c -------------------------------------------------------------------------------- /Src/e_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/e_log10.c -------------------------------------------------------------------------------- /Src/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/e_pow.c -------------------------------------------------------------------------------- /Src/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/e_rem_pio2.c -------------------------------------------------------------------------------- /Src/e_remainder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/e_remainder.c -------------------------------------------------------------------------------- /Src/e_scalb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/e_scalb.c -------------------------------------------------------------------------------- /Src/e_sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/e_sinh.c -------------------------------------------------------------------------------- /Src/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/e_sqrt.c -------------------------------------------------------------------------------- /Src/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/k_cos.c -------------------------------------------------------------------------------- /Src/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/k_rem_pio2.c -------------------------------------------------------------------------------- /Src/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/k_sin.c -------------------------------------------------------------------------------- /Src/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/k_tan.c -------------------------------------------------------------------------------- /Src/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/math.h -------------------------------------------------------------------------------- /Src/math_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/math_private.h -------------------------------------------------------------------------------- /Src/mathcalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/mathcalls.c -------------------------------------------------------------------------------- /Src/s_asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_asinh.c -------------------------------------------------------------------------------- /Src/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_atan.c -------------------------------------------------------------------------------- /Src/s_cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_cbrt.c -------------------------------------------------------------------------------- /Src/s_ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_ceil.c -------------------------------------------------------------------------------- /Src/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_copysign.c -------------------------------------------------------------------------------- /Src/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_cos.c -------------------------------------------------------------------------------- /Src/s_expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_expm1.c -------------------------------------------------------------------------------- /Src/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_fabs.c -------------------------------------------------------------------------------- /Src/s_finite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_finite.c -------------------------------------------------------------------------------- /Src/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_floor.c -------------------------------------------------------------------------------- /Src/s_frexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_frexp.c -------------------------------------------------------------------------------- /Src/s_ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_ilogb.c -------------------------------------------------------------------------------- /Src/s_isinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_isinf.c -------------------------------------------------------------------------------- /Src/s_isnan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_isnan.c -------------------------------------------------------------------------------- /Src/s_ldexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_ldexp.c -------------------------------------------------------------------------------- /Src/s_log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_log1p.c -------------------------------------------------------------------------------- /Src/s_log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_log2.c -------------------------------------------------------------------------------- /Src/s_logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_logb.c -------------------------------------------------------------------------------- /Src/s_modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_modf.c -------------------------------------------------------------------------------- /Src/s_nextafter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_nextafter.c -------------------------------------------------------------------------------- /Src/s_rint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_rint.c -------------------------------------------------------------------------------- /Src/s_round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_round.c -------------------------------------------------------------------------------- /Src/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_scalbn.c -------------------------------------------------------------------------------- /Src/s_signbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_signbit.c -------------------------------------------------------------------------------- /Src/s_significand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_significand.c -------------------------------------------------------------------------------- /Src/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_sin.c -------------------------------------------------------------------------------- /Src/s_sincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_sincos.c -------------------------------------------------------------------------------- /Src/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_tan.c -------------------------------------------------------------------------------- /Src/s_tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_tanh.c -------------------------------------------------------------------------------- /Src/s_trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/s_trunc.c -------------------------------------------------------------------------------- /Src/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidian/MathLib/HEAD/Src/startup.c --------------------------------------------------------------------------------