Update the changelog
[opencv] / apps / cvenv / EiC / stab.h
1 #ifndef STABH_
2 #define STABH_
3
4 typedef struct {
5     char ** strs;
6     int n;
7 }stab_t;
8
9
10 /** PROTOTYPES from stab.c **/
11 char * EiC_stab_SaveString(stab_t *stab, char *s);
12 size_t EiC_stab_NextEntryNum(stab_t *stab);
13 void EiC_stab_CleanUp(stab_t *stab, size_t bot);
14 void EiC_stab_Mark(stab_t *stab, char mark);
15 void EiC_stab_ShowStrings(stab_t *stab);
16 int EiC_stab_FindString(stab_t *stab, char *s);
17 int EiC_stab_RemoveString(stab_t *stab, char *s);
18
19 #endif