Convert static func naming to same style
Previously, some modules used BH_<Module> prefix in the names of static functions (some used just <Module> prefix). Now every static function should start from lowercase.
This commit is contained in:
@@ -19,7 +19,7 @@ BH_Args - command line argument processing
|
||||
{0, NULL, 0, NULL}
|
||||
};
|
||||
|
||||
static int OptionsCallback(int key,
|
||||
static int optionsCallback(int key,
|
||||
char *arg,
|
||||
void *data)
|
||||
{
|
||||
|
||||
@@ -19,7 +19,7 @@ BH_Args - обработка аргументов командной строк
|
||||
{0, NULL, 0, NULL}
|
||||
};
|
||||
|
||||
static int OptionsCallback(int key,
|
||||
static int optionsCallback(int key,
|
||||
char *arg,
|
||||
void *data)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user