mirror of
https://github.com/Museum-of-Art-and-Digital-Entertainment/macross.git
synced 2024-11-30 04:55:00 +00:00
17 lines
654 B
C
17 lines
654 B
C
|
#ifndef PARSER_MISC_H_
|
||
|
#define PARSER_MISC_H_
|
||
|
#include "macrossTypes.h"
|
||
|
|
||
|
statementType *addLabelToSatement(labelListType *labelList, statementType *statement);
|
||
|
void botch(char *message, int arg1, int arg2, int arg3);
|
||
|
void checkDefineAssignmentOperator(assignmentKindType assignmentOperator);
|
||
|
void convertDefineToMDefine(statementType *defineStatement);
|
||
|
ifStatementBodyType *extractIfBody(statementType *ifStatement);
|
||
|
mifStatementBodyType *extractMifBody(statementType *mifStatement);
|
||
|
stringType *extractString(operandType *textExpression);
|
||
|
void popMacroOrFunctionNestingDepth();
|
||
|
void pushMacroOrFunctionNestingDepth();
|
||
|
char *saveString(char *s);
|
||
|
|
||
|
#endif
|