2 * * Copyright (C) 2007 Ubiquiti Networks, Inc.
4 * * This program is free software; you can redistribute it and/or
5 * * modify it under the terms of the GNU General Public License as
6 * * published by the Free Software Foundation; either version 2 of the
7 * * License, or (at your option) any later version.
9 * * This program is distributed in the hope that it will be useful, but
10 * * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * * General Public License for more details.
14 * * You should have received a copy of the GNU General Public License
15 * * along with this program; if not, write to the Free Software
16 * * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include <sys/types.h>
24 #define MAGIC_HEADER "OPEN"
25 #define MAGIC_PART "PART"
26 #define MAGIC_END "END."
28 #define MAGIC_LENGTH 4
30 typedef struct header
{
31 char magic
[MAGIC_LENGTH
];
35 } __attribute__ ((packed
)) header_t
;
38 char magic
[MAGIC_LENGTH
];
47 } __attribute__ ((packed
)) part_t
;
49 typedef struct part_crc
{
52 } __attribute__ ((packed
)) part_crc_t
;
54 typedef struct signature
{
55 char magic
[MAGIC_LENGTH
];
58 } __attribute__ ((packed
)) signature_t
;
62 #define INFO(...) fprintf(stdout, __VA_ARGS__)
63 #define ERROR(...) fprintf(stderr, "ERROR: "__VA_ARGS__)
64 #define WARN(...) fprintf(stderr, "WARN: "__VA_ARGS__)
65 #define DEBUG(...) do {\
67 fprintf(stdout, "DEBUG: "__VA_ARGS__); \
This page took 0.053102 seconds and 5 git commands to generate.