Context algorithm
Semi-predictive context algorithm implementation
 All Data Structures Files Functions Variables Typedefs Macros Pages
types.h File Reference
#include <sys/types.h>
#include <limits.h>
#include <stdlib.h>
#include <stdio.h>

Go to the source code of this file.

Macros

#define LOGWORDSIZE   5
 Base 2 logarithm of wordsize. More...
 
#define UintConst(N)   (N##U)
 Unsigned integer constant. More...
 
#define BOOL   unsigned char
 Boolean data type. More...
 
#define False   ((BOOL) 0)
 False boolean constant. More...
 
#define True   ((BOOL) 1)
 True boolean constant. More...
 

Typedefs

typedef unsigned char Uchar
 Unsigned char type. More...
 
typedef unsigned short Ushort
 Unsigned short type. More...
 
typedef unsigned long Uint
 Unsigned int type. More...
 
typedef signed long Sint
 Signed int type. More...
 
typedef unsigned long Showuint
 Type of unsigned integer in printf. More...
 
typedef signed long Showsint
 Type of signed integer in printf. More...
 

Macro Definition Documentation

#define BOOL   unsigned char

Boolean data type.

Definition at line 92 of file types.h.

#define False   ((BOOL) 0)

False boolean constant.

Definition at line 100 of file types.h.

#define LOGWORDSIZE   5

Base 2 logarithm of wordsize.

Definition at line 75 of file types.h.

#define True   ((BOOL) 1)

True boolean constant.

Definition at line 108 of file types.h.

#define UintConst (   N)    (N##U)

Unsigned integer constant.

Definition at line 78 of file types.h.

Typedef Documentation

typedef signed long Showsint

Type of signed integer in printf.

Definition at line 87 of file types.h.

typedef unsigned long Showuint

Type of unsigned integer in printf.

Definition at line 84 of file types.h.

typedef signed long Sint

Signed int type.

Definition at line 57 of file types.h.

typedef unsigned char Uchar

Unsigned char type.

Definition at line 48 of file types.h.

typedef unsigned long Uint

Unsigned int type.

Definition at line 54 of file types.h.

typedef unsigned short Ushort

Unsigned short type.

Definition at line 51 of file types.h.