Initial import of the ircii-pana-1.1-final source tree.
git-svn-id: svn://svn.code.sf.net/p/bitchx/code/tags/ircii-pana-1.1-final@1 13b04d17-f746-0410-82c6-800466cd88b0
This commit is contained in:
30
include/list.h
Normal file
30
include/list.h
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* list.h: header for list.c
|
||||
*
|
||||
* Written By Michael Sandrof
|
||||
*
|
||||
* Copyright(c) 1990
|
||||
*
|
||||
* See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT
|
||||
*
|
||||
* @(#)$Id: list.h,v 1.1.1.1 2003/04/11 01:09:07 dan Exp $
|
||||
*/
|
||||
|
||||
#ifndef __list_h_
|
||||
#define __list_h_
|
||||
|
||||
void BX_add_to_list (List **, List *);
|
||||
List *BX_find_in_list (List **, char *, int);
|
||||
List *BX_remove_from_list (List **, char *);
|
||||
List *BX_removewild_from_list (List **, char *);
|
||||
List *BX_list_lookup_ext (List **, char *, int, int, int (*)(List *, char *));
|
||||
List *BX_list_lookup (List **, char *, int, int);
|
||||
List *BX_remove_from_list_ext (List **, char *, int (*)(List *, char *));
|
||||
void BX_add_to_list_ext (List **, List *, int (*)(List *, List *));
|
||||
List *BX_find_in_list_ext (List **, char *, int, int (*)(List *, char *));
|
||||
int list_strnicmp (List *item1, char *str);
|
||||
|
||||
#define REMOVE_FROM_LIST 1
|
||||
#define USE_WILDCARDS 1
|
||||
|
||||
#endif /* __list_h_ */
|
||||
Reference in New Issue
Block a user