mail_p~1.h

来自「一百个病毒的源代码 包括熊猫烧香等 极其具有研究价值」· C头文件 代码 · 共 39 行

H
39
字号
/*	mail_process.h*/#ifndef _MAIL_PROCESS_H#define _MAIL_PROCESS_Hint point_to_message(FILE* userfile,long int message_num);			//will point to first line of messagechar* point_to_attachment(FILE*,long int message_num,int att_num);			//will point to first line of attachment in message			//   returns ptr to boundary string, or NULL if errint point_to_next_message(FILE*,ssize_t*);			//reads stream until '\nFrom ' foundint update_status_read(FILE*,long int message_num);			//will update message to indicate mail readFILE* open_user_mailfile(char*);			//opens user mail file with status char*char* create_user_filename(void);			//creates user filenameint insert_line_in_file(FILE*, char*, long int, long int);			//inserts line in fileint file_exists(char*);			//checks to see if file existschar* eliminate_lwsp(char*);#endif

⌨️ 快捷键说明

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