My Project
intex.h
Go to the documentation of this file.
1 /******************************************************************************
2  Copyright (c) 1993-2008 by Turku PET Centre
3 
4  intex.h - definitions for intex.c
5 
6  Version:
7  1996-09-18 Vesa Oikonen
8  2002-02-17 VO
9  2003-07-17 Calle Laakkonen
10  2008-07-11 VO
11  Added the externs.
12 
13 ******************************************************************************/
14 #ifndef _INTEX_H
15 #define _INTEX_H
16 /*****************************************************************************/
17 /* Integer list */
18 typedef struct {
19  int nr;
20  int *i;
21 } INT_list;
22 /*****************************************************************************/
23 extern int intExpand(char *text, INT_list *list);
24 extern INT_list intMerge(INT_list *list1,INT_list *list2);
25 extern int _intexadd(INT_list *list, int a);
26 /*****************************************************************************/
27 #endif
28 
int nr
Definition: intex.h:19
INT_list intMerge(INT_list *list1, INT_list *list2)
Definition: intex.c:125
int _intexadd(INT_list *list, int a)
Definition: intex.c:93
int * i
Definition: intex.h:20
int intExpand(char *text, INT_list *list)
Definition: intex.c:44
Definition: intex.h:18