File: array.h

package info (click to toggle)
epic 3.004-17.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 5,192 kB
  • ctags: 3,197
  • sloc: ansic: 40,843; makefile: 530; sh: 129; perl: 17
file content (33 lines) | stat: -rw-r--r-- 1,049 bytes parent folder | download | duplicates (4)
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
/* 
 * 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"

extern char *function_indextoitem _((char *));
extern char *function_itemtoindex _((char *));
extern char *function_igetitem _((char *));
extern char *function_getitem _((char *));
extern char *function_setitem _((char *));
extern char *function_finditem _((char *));
extern char *function_matchitem _((char *));
extern char *function_rmatchitem _((char *));
extern char *function_getmatches _((char *));
extern char *function_getrmatches _((char *));
extern char *function_delitem _((char *));
extern char *function_numitems _((char *));
extern char *function_getarrays _((char *));
extern char *function_numarrays _((char *));
extern char *function_delarray _((char *));
extern char *function_ifinditem _((char *));
extern char *function_ifindfirst _((char *));

#endif