| Line | |
|---|
| 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; |
|---|
| 20 | GB_NINT *offsets; |
|---|
| 21 | GB_NINT *resort; |
|---|
| 22 | }; |
|---|
| 23 | |
|---|
| 24 | #else |
|---|
| 25 | #error gb_dict.h included twice |
|---|
| 26 | #endif // GB_DICT_H |
|---|
Note: See
TracBrowser
for help on using the repository browser.