8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-27 07:23:04 +01:00
firebird-mirror/src/gpre/msc_proto.h

53 lines
1.7 KiB
C
Raw Normal View History

2001-05-23 15:26:42 +02:00
/*
* PROGRAM: Preprocessor
* MODULE: msc_proto.h
* DESCRIPTION: Prototype header file for msc.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_MSC_PROTO_H
#define GPRE_MSC_PROTO_H
2001-05-23 15:26:42 +02:00
#include "../gpre/parse.h"
ACT MSC_action(GPRE_REQ, enum act_t);
UCHAR* MSC_alloc(int);
UCHAR* MSC_alloc_permanent(int);
GPRE_NOD MSC_binary(NOD_T, GPRE_NOD, GPRE_NOD);
GPRE_CTX MSC_context(GPRE_REQ);
void MSC_copy(const char*, int, char*);
void MSC_copy_cat(const char*, int, const char*, int, char*);
SYM MSC_find_symbol(SYM, enum sym_t);
void MSC_free(UCHAR *);
void MSC_free_request(GPRE_REQ);
void MSC_init(void);
bool MSC_match(KWWORDS);
GPRE_NOD MSC_node(enum nod_t, SSHORT);
GPRE_NOD MSC_pop(LLS *);
PRV MSC_privilege_block(void);
void MSC_push(GPRE_NOD, LLS *);
REF MSC_reference(REF *);
GPRE_REQ MSC_request(enum req_t);
SCHAR* MSC_string(TEXT *);
SYM MSC_symbol(enum sym_t, TEXT *, USHORT, GPRE_CTX);
GPRE_NOD MSC_unary(NOD_T, GPRE_NOD);
USN MSC_username(SCHAR *, USHORT);
2001-05-23 15:26:42 +02:00
#endif // GPRE_MSC_PROTO_H