📄 oldcomplex.h
字号:
/* @(#)oldcomplex.h 1.1 92/07/30 SMI *//* * Copyright (c) 1988 by Sun Microsystems, Inc. */#include <math.h>typedef struct { float real, imag; } complex;typedef struct { double dreal, dimag; } dcomplex;/* So far the following works for all architectures. */#define COMPLEXFUNCTIONTYPE double#define RETURNCOMPLEX(R,M) { union { double _d; float _f[2]} _kluge ; _kluge._f[0] = (R) ; _kluge._f[1] = (M) ; return(_kluge._d) ; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -