movefr.h
来自「g729 coding ipaddressing」· C头文件 代码 · 共 40 行
H
40 行
/**************************************************************************
*
* 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 + =
减小字号Ctrl + -
显示快捷键?