📄 filesearch.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -