source: tags/ms_r16q2/TEMPLATES/bytestring.h

Last change on this file was 6750, checked in by westram, 14 years ago
  • sync with refactor branch (branching sux)
File size: 854 bytes
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
15struct 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.