Make hed_expr_len and hed_expr_flags inline
[hed.git] / src / hed.h
bloba22dc79896aac29603f1c4aa29e8785d80d9bcb1
1 /* The common header file */
2 /* $Id$ */
4 /*
5 * hed - Hexadecimal editor
6 * Copyright (C) 2004 Petr Baudis <pasky@ucw.cz>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #ifndef HED__HED_H
23 #define HED__HED_H
25 /* We use assert()s to specify invariants. */
26 #include <assert.h>
28 /* The types - especially ssize_t, size_t and off_t. */
29 #include <sys/types.h>
30 #include <stddef.h>
31 #include <stdint.h>
32 #include <stdbool.h>
34 #include "util/numbers.h"
36 #endif