File: types.h

package info (click to toggle)
aoeui 1.7%2B20160302.git4e5dee9-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 532 kB
  • sloc: ansic: 6,860; makefile: 294; sh: 11
file content (14 lines) | stat: -rw-r--r-- 345 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Copyright 2007, 2008 Peter Klausler.  See COPYING for license. */
#ifndef TYPES_H
#define TYPES_H

#include <unistd.h> /* for ssize_t */

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