File: types.h

package info (click to toggle)
aoeui 1.4-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 440 kB
  • ctags: 574
  • sloc: ansic: 6,005; makefile: 76; sh: 11
file content (12 lines) | stat: -rw-r--r-- 306 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
/* Copyright 2007, 2008 Peter Klausler.  See COPYING for license. */
#ifndef TYPES_H
#define TYPES_H

typedef unsigned Unicode_t;
typedef unsigned char Byte_t;
typedef enum Boolean_t { FALSE = 0!=0, TRUE = 0==0 } Boolean_t;
typedef size_t position_t;
typedef ssize_t sposition_t;
typedef int fd_t;

#endif