ARB
gb_dict.h
Go to the documentation of this file.
1 // =============================================================== //
2 // //
3 // File : gb_dict.h //
4 // Purpose : //
5 // //
6 // Institute of Microbiology (Technical University Munich) //
7 // http://www.arb-home.de/ //
8 // //
9 // =============================================================== //
10 
11 #ifndef GB_DICT_H
12 #define GB_DICT_H
13 
14 typedef int GB_NINT; // Network byte order int
15 
16 struct GB_DICTIONARY {
17  int words;
18  int textlen;
19  unsigned char *text;
22 };
23 
24 #else
25 #error gb_dict.h included twice
26 #endif // GB_DICT_H
unsigned char * text
Definition: gb_dict.h:19
GB_NINT * offsets
Definition: gb_dict.h:20
int textlen
Definition: gb_dict.h:18
GB_NINT * resort
Definition: gb_dict.h:21
int GB_NINT
Definition: gb_dict.h:14