8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-28 02:43:03 +01:00
firebird-mirror/src/gpre/gpre_proto.h

46 lines
1.3 KiB
C
Raw Normal View History

2001-05-23 15:26:42 +02:00
/*
* PROGRAM: Preprocessor
* MODULE: gpre_proto.h
* DESCRIPTION: Prototype header file for gpre.c
*
* The contents of this file are subject to the Interbase Public
* License Version 1.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy
* of the License at http://www.Inprise.com/IPL.html
*
* Software distributed under the License is distributed on an
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
* or implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code was created by Inprise Corporation
* and its predecessors. Portions created by Inprise Corporation are
* Copyright (C) Inprise Corporation.
*
* All Rights Reserved.
* Contributor(s): ______________________________________.
*/
#ifndef GPRE_GPRE_PROTO_H
#define GPRE_GPRE_PROTO_H
2001-05-23 15:26:42 +02:00
#include "../gpre/parse.h"
void CPR_abort(void);
2002-07-06 07:32:02 +02:00
#ifdef DEV_BUILD
void CPR_assert(TEXT *, int);
2002-07-06 07:32:02 +02:00
#endif
void CPR_bugcheck(TEXT *);
void CPR_end_text(TXT);
int CPR_error(const TEXT*);
void CPR_exit(int);
void CPR_warn(const TEXT*);
TOK CPR_eol_token(void);
void CPR_get_text(TEXT *, TXT);
void CPR_raw_read(void);
void CPR_s_error(TEXT *);
TXT CPR_start_text(void);
TOK CPR_token(void);
2001-05-23 15:26:42 +02:00
#endif // GPRE_GPRE_PROTO_H