filesearch.h
来自「信道编解码中的turbo编解码程序」· C头文件 代码 · 共 42 行
H
42 行
#ifndef FILESEARCH_H
#define FILESEARCH_H
/*
*******************************************************************************
* ansi c source code
* file name :
* FileSearch.h
* abstract:
* declaration of functions in the FileSearch.c
* reference:
*
* author:
* Wang Jiaheng 2004-09-09
* revision history:
* Wang Jiaheng 2004-08-09 original version
*******************************************************************************
*/
/*
*******************************************************************************
* include files
*******************************************************************************
*/
#include <stdio.h>
/*
********************************************************************************
* function declaration
********************************************************************************
*/
extern int FindChar(FILE *pf, char target);
extern int FindString(FILE *pf, char *p_str);
extern int ChangeLine(FILE *pf);
extern int ReadFile(char file_name[], int *p_num, double para[]);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?