File: array.h

package info (click to toggle)
teknap 1.4-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 5,428 kB
  • ctags: 6,297
  • sloc: ansic: 55,591; makefile: 545; sh: 112
file content (40 lines) | stat: -rw-r--r-- 1,226 bytes parent folder | download
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
39
40
 /* $Id: array.h,v 1.1.1.1 2000/06/22 09:34:26 edwards Exp $ */
 
/* 
 * 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