r_lg10.c
来自「在Linxu程序设计当中」· C语言 代码 · 共 22 行
C
22 行
#include "f2c.h"#define log10e 0.43429448190325182765#ifdef KR_headersdouble log();double r_lg10(x) real *x;#else#undef abs#include "math.h"#ifdef __cplusplusextern "C" {#endifdouble r_lg10(real *x)#endif{return( log10e * log(*x) );}#ifdef __cplusplus}#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?