mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-23 11:32:07 +00:00
Switch line terminators from CRLF to LF
Argh, that obnoxious platform again... ;-) Signed-off-by: Vegard Nossum <vegard.nossum@gmail.com>
This commit is contained in:
@@ -1,42 +1,42 @@
|
||||
/* fstack.h
|
||||
*
|
||||
* Contains some assembler-wide defines and externs
|
||||
*
|
||||
* Copyright 1997 Carsten Sorensen
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef FSTACK_H
|
||||
#define FSTACK_H
|
||||
|
||||
#include "asm.h"
|
||||
#include "types.h"
|
||||
#include "lexer.h"
|
||||
|
||||
struct sContext
|
||||
{
|
||||
YY_BUFFER_STATE FlexHandle;
|
||||
struct sSymbol *pMacro;
|
||||
struct sContext *pNext;
|
||||
char tzFileName[_MAX_PATH+1];
|
||||
char *tzMacroArgs[MAXMACROARGS+1];
|
||||
SLONG nLine;
|
||||
ULONG nStatus;
|
||||
FILE *pFile;
|
||||
char *pREPTBlock;
|
||||
ULONG nREPTBlockCount;
|
||||
ULONG nREPTBlockSize;
|
||||
};
|
||||
|
||||
extern ULONG fstk_RunInclude( char *s );
|
||||
extern void fstk_RunMacroArg( SLONG s );
|
||||
extern ULONG fstk_Init( char *s );
|
||||
extern void fstk_Dump( void );
|
||||
extern void fstk_AddIncludePath( char *s );
|
||||
extern ULONG fstk_RunMacro( char *s );
|
||||
extern void fstk_RunRept( ULONG count );
|
||||
extern void fstk_FindFile( char *s );
|
||||
|
||||
extern int yywrap( void );
|
||||
|
||||
#endif
|
||||
/* fstack.h
|
||||
*
|
||||
* Contains some assembler-wide defines and externs
|
||||
*
|
||||
* Copyright 1997 Carsten Sorensen
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef FSTACK_H
|
||||
#define FSTACK_H
|
||||
|
||||
#include "asm.h"
|
||||
#include "types.h"
|
||||
#include "lexer.h"
|
||||
|
||||
struct sContext
|
||||
{
|
||||
YY_BUFFER_STATE FlexHandle;
|
||||
struct sSymbol *pMacro;
|
||||
struct sContext *pNext;
|
||||
char tzFileName[_MAX_PATH+1];
|
||||
char *tzMacroArgs[MAXMACROARGS+1];
|
||||
SLONG nLine;
|
||||
ULONG nStatus;
|
||||
FILE *pFile;
|
||||
char *pREPTBlock;
|
||||
ULONG nREPTBlockCount;
|
||||
ULONG nREPTBlockSize;
|
||||
};
|
||||
|
||||
extern ULONG fstk_RunInclude( char *s );
|
||||
extern void fstk_RunMacroArg( SLONG s );
|
||||
extern ULONG fstk_Init( char *s );
|
||||
extern void fstk_Dump( void );
|
||||
extern void fstk_AddIncludePath( char *s );
|
||||
extern ULONG fstk_RunMacro( char *s );
|
||||
extern void fstk_RunRept( ULONG count );
|
||||
extern void fstk_FindFile( char *s );
|
||||
|
||||
extern int yywrap( void );
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user