17 lines
511 B
C
17 lines
511 B
C
/*********************************************************************************************
|
||
Description: 声明一些公用的函数
|
||
|
||
Copyright : All right reserved by ZheYuan.BJ
|
||
|
||
Author : Zhang Zhonghai
|
||
Date : 2023/09/18 adfasdf
|
||
***********************************************************************************************/
|
||
#ifndef __COMMON_H
|
||
#define __COMMON_H
|
||
|
||
|
||
/* 处理pubmed txt文件,结果保存在mat文件中 */
|
||
void ProcessPubmedTxt(int argc, const char** argv);
|
||
|
||
|
||
#endif // !__COMMON_H
|