⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 movefr.c

📁 this the source code of addio compression standard CELP. Also, it is optimizied for the execution sp
💻 C
字号:
/**************************************************************************
*
* 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
*
*
**************************************************************************/
movefr(n, a, b)
int n;
register float *a, *b;
{

register  int i;
  for (i = 0; i < n; i++)
    *b++ = *a++;
}

⌨️ 快捷键说明

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