⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sedcrypt.h

📁 EPIC IRC客户端。来源于IRCII客户端但做了很多性能和功能的优化。
💻 H
字号:
/* * crypt.h: header for crypt.c  * * Copyright 1990 Michael Sandrof * Copyright 1997 EPIC Software Labs * See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT  */#ifndef __crypt_h__#define __crypt_h__/* * Crypt: the crypt list structure,  consists of the nickname, and the * encryption key  */typedef struct	CryptStru{	struct	CryptStru *next;	char	*nick;	char	*key;	char	*prog;	int	filename;}	Crypt;	BUILT_IN_COMMAND(encrypt_cmd);	char	*crypt_msg 	(char *, Crypt *);	char	*decrypt_msg 	(char *, Crypt *);	char	*do_crypt	(char *, Crypt *, int);	Crypt	*is_crypted 	(const char *);	void	my_decrypt 	(char *, int, char *);	void	my_encrypt	(char *, int, char *);#endif /* _CRYPT_H_ */

⌨️ 快捷键说明

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