📄 movefr.h
字号:
/**************************************************************************
*
* ROUTINE
* movefr
*
* FUNCTION
* copy real array to another array
*
* SYNOPSIS
* subroutine movefr(n, a, b)
*
* formal
*
* data I/O
* name type type function
* -------------------------------------------------------------------
* n int i number of elements to copy
* a float i source
* b float o destination
***************************************************************************
*
* CALLED BY
*
* csub psearch
*
* CALLS
*
*
**************************************************************************/
#ifdef MOVEFR_SUB
static void movefr(int n, float *a, float *b)
{
int i;
for (i = 0; i < n; i++)
*b++ = *a++;
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -