/* %Z%%M% %I% %E% */ /* * Copyright (c) 1992, 1993, 1995, 2000 by Wayne C. Gramlich. * All rights reserved. * * Permission to use, copy, modify, distribute, and sell this software * for any purpose is hereby granted without fee provided that the above * copyright notice and this permission are retained. The author makes * no representations about the suitability of this software for any purpose. * It is provided "as is" without express or implied warranty. */ /* This file contains generate typedefs: */ #ifndef GENERATE_TYPES_H #define GENERATE_TYPES_H typedef struct Generate_struct *Generate; typedef enum Generate_kind_enum Generate_kind; /* Defining the enums here shuts lint up! */ enum Generate_kind_enum { Generate_address_get, Generate_allocate, Generate_compare, Generate_copy, Generate_equal, Generate_erase, Generate_hash, Generate_identical, Generate_input, Generate_integer_convert, Generate_new, Generate_output, Generate_parse, Generate_print, Generate_save, Generate_unsigned_convert }; #endif /* GENERATE_TYPES_H */