ALL: initialise -> initialize

This commit is contained in:
Matthew Hoops 2011-05-25 11:17:11 -04:00
parent 7ff9f34aef
commit 9539017ee3
121 changed files with 324 additions and 324 deletions

View file

@ -237,10 +237,10 @@ void close_source_file() {
}
/**
* Initialises the scanner
* Initializes the scanner
*/
void init_scanner(const char *name) {
// Initialise character table
// Initialize character table
for (int i = 0; i < 256; ++i) char_table[i] = SPECIAL;
for (int i = '0'; i <= '9'; ++i) char_table[i] = DIGIT;
for (int i = 'A'; i <= 'Z'; ++i) char_table[i] = LETTER;
@ -265,7 +265,7 @@ void quit_scanner() {
/**
* Initialises the output
* Initializes the output
*/
void init_output(const char *destFilename) {
dest_file = fopen(destFilename, "wb");