1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-11 11:30:13 +00:00

Fixed typos in comments. No code changes.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5014 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-05-01 21:40:00 +00:00
parent 06fddaf11f
commit 23a5ea3ba5
2 changed files with 3 additions and 3 deletions

View File

@ -1673,7 +1673,7 @@ static void ConsumeEOL (InputData* D)
static void ParseFile (InputData* D)
/* Parse a FILE line */
{
unsigned Id = 0;
unsigned Id = 0;
unsigned long Size = 0;
unsigned long MTime = 0;
StrBuf FileName = STRBUF_INITIALIZER;
@ -3203,7 +3203,7 @@ cc65_symbolinfo* cc65_symbol_byname (cc65_dbginfo Handle, const char* Name)
cc65_symbolinfo* cc65_symbol_inrange (cc65_dbginfo Handle, cc65_addr Start, cc65_addr End)
/* Return a list of labels in the given range. End is inclusive. The function
* return NULL if no symbols withing the given range are found. Non label
* return NULL if no symbols within the given range are found. Non label
* symbols are ignored and not returned.
*/
{

View File

@ -224,7 +224,7 @@ cc65_symbolinfo* cc65_symbol_byname (cc65_dbginfo handle, const char* name);
cc65_symbolinfo* cc65_symbol_inrange (cc65_dbginfo handle,
cc65_addr start, cc65_addr end);
/* Return a list of labels in the given range. end is inclusive. The function
* return NULL if no symbols withing the given range are found. Non label
* return NULL if no symbols within the given range are found. Non label
* symbols are ignored and not returned.
*/