Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 6_write_txt/write_txt.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ int ReadFirstLine( void );
int ReadLastLine( void );
void WriteLine( char *pszLine );

// Preprocessor defines
// Preprocessor defines for ease in understanding
#define BUFFER_SIZE 1024
#define NEW_LINE "\n"
#define DATA_FILE "data.txt"
Expand Down Expand Up @@ -120,4 +120,4 @@ int ReadLastLine()

fclose( pDataFile );
return 1;
}
}