Renaming jerry_* identifiers from 'camelCase' to 'underscore_naming'.

This commit is contained in:
Ruben Ayrapetyan
2014-07-23 13:03:30 +04:00
parent c0df259726
commit 79f3d97434
8 changed files with 28 additions and 28 deletions
+3 -3
View File
@@ -113,19 +113,19 @@ main (int argc, char **argv)
if (file_name == NULL)
file_name = argv[1];
else
jerry_Exit (ERR_SEVERAL_FILES);
jerry_exit (ERR_SEVERAL_FILES);
}
#endif
#ifdef __HOST
if (file_name == NULL)
jerry_Exit (ERR_NO_FILES);
jerry_exit (ERR_NO_FILES);
file = __fopen (file_name, "r");
if (file == NULL)
{
jerry_Exit (ERR_IO);
jerry_exit (ERR_IO);
}
lexer_set_file (file);