about summary refs log tree commit diff
path: root/converter/other/fiasco/lib/types.h
blob: 02e40a90cd98d2c7ab2bef194c7d5407b8db6206 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
 *  types.h
 *
 *  Written by:     Ullrich Hafner
 *      
 *  This file is part of FIASCO (Fractal Image And Sequence COdec)
 *  Copyright (C) 1994-2000 Ullrich Hafner
 */

/*
 *  $Date: 2000/06/14 20:49:37 $
 *  $Author: hafner $
 *  $Revision: 5.1 $
 *  $State: Exp $
 */

#ifndef _FIASCO_TYPES_H
#define _FIASCO_TYPES_H

#undef FALSE
#undef NO
#undef TRUE
#undef YES

enum fiasco_boolean { NO = 0, FALSE = 0, YES = 1, TRUE = 1};

typedef float                real_t;
typedef enum fiasco_boolean  bool_t;
typedef unsigned char        byte_t;
typedef short                word_t;
typedef unsigned short       u_word_t;
typedef struct pair
{
   word_t key;
   word_t value;
} pair_t;

#endif