blob: 3799aa315485ce4aa404dc60e5d1d7fd78f4f6fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef INDEX_H
#define INDEX_H
#include "main.h"
#include "list.h"
extern list_t* newIndex();
extern int addToIndex(list_t *list, int index);
extern int getFormIndex(list_t *list, int index);
extern void delFromIndex(list_t *list, int index);
extern void destroyIndex(list_t *list);
#endif
|