
TYPES                             C Interface                              TYPES

NAME
      types -- common defines and types

SYNOPSIS
      #include "c/include/types.h"

      #define nil 0
      #define NULL 0

      typedef enum {false,true} Boolean;
      typedef char *Ptr;
      typedef Ptr *Handle;
      typedef int Fixed;
      typedef char Str255[256];


DESCRIPTION
      These defines and types are shared by several Macintosh libraries.
      
AUTHOR
      C Interfaces by Rick Meyers
      Copyright 1984 Apple Computer Inc.

BUGS
      Is Str255 used anywhere?
