list.h

来自「EPIC IRC客户端。来源于IRCII客户端但做了很多性能和功能的优化。」· C头文件 代码 · 共 27 行

H
27
字号
/* * list.h: header for list.c  * * Copyright 1990 Michael Sandrof * Copyright 1997 EPIC Software Labs * See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT  */#ifndef __list_h__#define __list_h__typedef	struct	list_stru{	struct	list_stru	*next;	char	*name;}	List;void	add_to_list 		(List **, List *);List	*find_in_list 		(List **, const char *, int);List	*remove_from_list 	(List **, const char *);List	*list_lookup 		(List **, const char *, int, int);#define REMOVE_FROM_LIST 	1#define USE_WILDCARDS 		1#endif /* _LIST_H */

⌨️ 快捷键说明

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