Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
BitchX
GitHub Repository: BitchX/BitchX1.3
Path: blob/master/include/array.h
1069 views
1
/*
2
* IRC-II (C) 1990, 1995 Michael Sandroff, Matthew Green
3
* This file (C) 1993, 1995 Aaron Gifford and Jeremy Nelson
4
*
5
* array.h -- header file for array.c
6
* See the COPYRIGHT file for copyright information
7
*
8
*/
9
10
#ifndef ARRAY_H
11
#define ARRAY_H
12
13
#include "irc_std.h"
14
15
BUILT_IN_FUNCTION(function_indextoitem);
16
BUILT_IN_FUNCTION(function_itemtoindex);
17
BUILT_IN_FUNCTION(function_igetitem);
18
BUILT_IN_FUNCTION(function_getitem);
19
BUILT_IN_FUNCTION(function_setitem);
20
BUILT_IN_FUNCTION(function_finditem);
21
BUILT_IN_FUNCTION(function_matchitem);
22
BUILT_IN_FUNCTION(function_rmatchitem);
23
BUILT_IN_FUNCTION(function_getmatches);
24
BUILT_IN_FUNCTION(function_getrmatches);
25
BUILT_IN_FUNCTION(function_delitem);
26
BUILT_IN_FUNCTION(function_numitems);
27
BUILT_IN_FUNCTION(function_getarrays);
28
BUILT_IN_FUNCTION(function_numarrays);
29
BUILT_IN_FUNCTION(function_delarray);
30
BUILT_IN_FUNCTION(function_ifinditem);
31
BUILT_IN_FUNCTION(function_ifindfirst);
32
BUILT_IN_FUNCTION(function_listarray);
33
BUILT_IN_FUNCTION(function_gettmatch);
34
BUILT_IN_FUNCTION(function_igetmatches);
35
BUILT_IN_FUNCTION(function_igetrmatches);
36
void delete_all_arrays(void);
37
38
#endif
39
40