sincos.h
来自「Source code for an Numeric Cmputer」· C头文件 代码 · 共 45 行
H
45 行
/********************************************************************* Description: sincos.h* support for native sincos functions** Derived from a work by Fred Proctor & Will Shackleford** Author:* License: LGPL Version 2* System: Linux* * Copyright (c) 2004 All rights reserved.** Last change: * $Revision: 1.4 $* $Author: alex_joni $* $Date: 2006/01/24 21:51:32 $********************************************************************/#ifndef SINCOS_H#define SINCOS_H#include "config.h"/* for each platform that has built-in support for the sincos function, that should be discovered by ./configure*//* testing for sincos now supported by ./configure */#ifdef HAVE___SINCOS#define sincos __sincos#endif/* all other platforms will not have __sincos, and will get the declaration for the explicit function*/#ifndef HAVE___SINCOSextern void sincos(double x, double *sx, double *cx);#endif#endif /* #ifndef SINCOS_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?