Sha256: 8808c554bce728beb49f122085ad64adcaf192bb397fe12c517f5bb9d4dbc266
Contents?: true
Size: 438 Bytes
Versions: 32
Compression:
Stored size: 438 Bytes
Contents
#ifndef _RHOMATH_H_ #define _RHOMATH_H_ #include "common/RhoPort.h" #ifdef __cplusplus extern "C" { #endif double rho_math_sqrt(double n); uint64 rho_math_pow2(int n); double rho_math_log2(double n); double rho_math_sin(double n); double rho_math_asin(double n); /* Hyperbolic tangent */ double rho_math_tanh(double n); /* Hyperbolic arctangent */ double rho_math_atanh(double n); #ifdef __cplusplus } // extern "C" #endif #endif
Version data entries
32 entries across 32 versions & 1 rubygems