/* %Z%%M% %I% %E% */ /* * Copyright (c) 1990, 1991, 1995 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. */ #ifndef TOKEN_EXPORTS_H #define TOKEN_EXPORTS_H #ifndef HEAP_TYPES_H #include "heap_types.h" #endif #ifndef TOKEN_TYPES_H #include "token_types.h" #endif #ifndef UNIX_STDIO_H #include "unix_stdio.h" #endif #ifdef OLD extern int token_equal(Token, Token); extern int token_hash(Token); extern Token token_read(Stdio, Heap); extern Str token_unparse(Token, Heap); extern int token_write(Token, Stdio); #endif /* OLD */ #endif /* TOKEN_EXPORTS_H */