ALL: initialise -> initialize
This commit is contained in:
parent
7ff9f34aef
commit
9539017ee3
121 changed files with 324 additions and 324 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue