summaryrefslogtreecommitdiff
path: root/tools/cab/cab.h
blob: 464ac45abd2d842776f39d03f993f70b621ecf23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _CAB_H
#define _CAB_H
/*
 * cab.h: tool to Check A Blob of ACPI tables
 *
 * This file is subject to the terms and conditions of the GNU General
 * Public License.  See the file "COPYING" in the main directory of this
 * archive for more details.
 *
 * Copyright (c) 2013, Al Stone <al.stone@linaro.org>
 *
 * NB: all values are assumed to be little-endian in the blob.
 *
 */

/* VERSION a.b.c = <ACPI standard>.<functionality changes>.<bug fixes> */
const char VERSION[] = { "5.0~3.1" };
const char PROGNAME[] = { "cab" };

#endif