| Line | |
|---|
| 1 | // ============================================================== // |
|---|
| 2 | // // |
|---|
| 3 | // File : bytestring.h // |
|---|
| 4 | // Purpose : // |
|---|
| 5 | // // |
|---|
| 6 | // Coded by Ralf Westram (coder@reallysoft.de) in August 2010 // |
|---|
| 7 | // Institute of Microbiology (Technical University Munich) // |
|---|
| 8 | // http://www.arb-home.de/ // |
|---|
| 9 | // // |
|---|
| 10 | // ============================================================== // |
|---|
| 11 | |
|---|
| 12 | #ifndef BYTESTRING_H |
|---|
| 13 | #define BYTESTRING_H |
|---|
| 14 | |
|---|
| 15 | struct bytestring { |
|---|
| 16 | char *data; |
|---|
| 17 | int size; |
|---|
| 18 | }; |
|---|
| 19 | |
|---|
| 20 | #else |
|---|
| 21 | #error bytestring.h included twice |
|---|
| 22 | #endif // BYTESTRING_H |
|---|
Note: See
TracBrowser
for help on using the repository browser.