misc.h

来自「矩量法仿真电磁辐射和散射的源代码(c++)」· C头文件 代码 · 共 34 行

H
34
字号
#ifndef __MISC__#define __MISC__#include <stdio.h>#include "math_util.h"/* carriage return and line feed */#define	CR	0x0d#define	LF	0x0a/* max length of a line read from input file */#define	LINE_LEN	132/*  usage() * *  prints usage information */void usage(void);/* Returns process time (user+system) BUT in _msec_ */void secnds( nec_float *x);/*  load_line() * *  Loads a line from a file, aborts on failure. Lines beginning *  with a '#' are ignored as comments. At the end of file EOF is *  returned. */int load_line( char *buff, FILE *pfile );#endif /* __MISC__ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?