mirror of
https://github.com/cc65/cc65.git
synced 2025-01-10 19:29:45 +00:00
Style fix
This commit is contained in:
parent
d5acfeb426
commit
31fdec2e2e
@ -163,6 +163,8 @@ static void SkipBlanks (int SingleLine)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
static long GetDecimalToken (void)
|
||||
{
|
||||
long Value = 0;
|
||||
@ -174,6 +176,8 @@ static long GetDecimalToken (void)
|
||||
return Value;
|
||||
}
|
||||
|
||||
|
||||
|
||||
static int GetEncodedChar (char* Buf, unsigned* IPtr, unsigned Size)
|
||||
{
|
||||
char Decoded = 0;
|
||||
@ -223,6 +227,8 @@ Store:
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
static void LineMarkerOrComment ()
|
||||
/* Handle a line beginning with '#'. Possible interpretations are:
|
||||
** - #line <lineno> ["<filename>"] (C preprocessor input)
|
||||
@ -312,6 +318,8 @@ Last:
|
||||
SB_Done (&SrcNameBuf);
|
||||
}
|
||||
|
||||
|
||||
|
||||
void InfoNextTok (void)
|
||||
/* Read the next token from the input stream */
|
||||
{
|
||||
@ -660,16 +668,6 @@ void InfoSetName (const char* Name)
|
||||
|
||||
|
||||
|
||||
#ifdef unused
|
||||
const char* InfoGetName (void)
|
||||
/* Get the name of the config file */
|
||||
{
|
||||
return InfoFile? InfoFile : "";
|
||||
}
|
||||
#endif /* unused */
|
||||
|
||||
|
||||
|
||||
int InfoAvail ()
|
||||
/* Return true if we have an info file given */
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user