File: array.h

package info (click to toggle)
ircii-pana 1%3A1.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 14,048 kB
  • ctags: 14,567
  • sloc: ansic: 130,654; sql: 6,041; makefile: 4,313; cpp: 1,270; tcl: 1,230; sh: 638; java: 151
file content (38 lines) | stat: -rw-r--r-- 1,160 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* 
 * IRC-II (C) 1990, 1995 Michael Sandroff, Matthew Green
 * This file (C) 1993, 1995 Aaron Gifford and Jeremy Nelson
 *
 * array.h -- header file for array.c
 * See the COPYRIGHT file for copyright information
 *
 */

#ifndef ARRAY_H
#define ARRAY_H

#include "irc_std.h"

	BUILT_IN_FUNCTION(function_indextoitem);
	BUILT_IN_FUNCTION(function_itemtoindex);
	BUILT_IN_FUNCTION(function_igetitem);
	BUILT_IN_FUNCTION(function_getitem);
	BUILT_IN_FUNCTION(function_setitem);
	BUILT_IN_FUNCTION(function_finditem);
	BUILT_IN_FUNCTION(function_matchitem);
	BUILT_IN_FUNCTION(function_rmatchitem);
	BUILT_IN_FUNCTION(function_getmatches);
	BUILT_IN_FUNCTION(function_getrmatches);
	BUILT_IN_FUNCTION(function_delitem);
	BUILT_IN_FUNCTION(function_numitems);
	BUILT_IN_FUNCTION(function_getarrays);
	BUILT_IN_FUNCTION(function_numarrays);
	BUILT_IN_FUNCTION(function_delarray);
	BUILT_IN_FUNCTION(function_ifinditem);
	BUILT_IN_FUNCTION(function_ifindfirst);
	BUILT_IN_FUNCTION(function_listarray);
	BUILT_IN_FUNCTION(function_gettmatch);
	BUILT_IN_FUNCTION(function_igetmatches);
	BUILT_IN_FUNCTION(function_igetrmatches);
	void delete_all_arrays(void);

#endif