encode.h
来自「veterbi 编解码程序」· C头文件 代码 · 共 23 行
H
23 行
/*****************************************************************************************
* encode.h
*
* jiangle 2004/05
*
* header of encode.c
*
*achieve encode and decode convolution
******************************************************************************************/
#ifndef _ENCODE_H
#define _ENCODE_H
#include <windows.h>
#include <stdio.h>
int encode(PBYTE inBuf,PBYTE outBuf,int count);
//inBuf: 待编码数据
//outBuf: 编码得到数据
//count: 待编码数据的字节数(每字节8bit)
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?