Uncrustify maxscale

See script directory for method. The script to run in the top level
MaxScale directory is called maxscale-uncrustify.sh, which uses
another script, list-src, from the same directory (so you need to set
your PATH). The uncrustify version was 0.66.
This commit is contained in:
Niclas Antti
2018-09-09 22:26:19 +03:00
parent fa7ec95069
commit c447e5cf15
849 changed files with 35002 additions and 27238 deletions

View File

@ -7,25 +7,34 @@
typedef struct
{
int version;
int version;
const char* name;
const char* email;
} configuration;
static int handler(void* user, const char* section, const char* name,
static int handler(void* user,
const char* section,
const char* name,
const char* value)
{
configuration* pconfig = (configuration*)user;
#define MATCH(s, n) strcmp(section, s) == 0 && strcmp(name, n) == 0
if (MATCH("protocol", "version")) {
#define MATCH(s, n) strcmp(section, s) == 0 && strcmp(name, n) == 0
if (MATCH("protocol", "version"))
{
pconfig->version = atoi(value);
} else if (MATCH("user", "name")) {
}
else if (MATCH("user", "name"))
{
pconfig->name = strdup(value);
} else if (MATCH("user", "email")) {
}
else if (MATCH("user", "email"))
{
pconfig->email = strdup(value);
} else {
return 0; /* unknown section/name, error */
}
else
{
return 0; /* unknown section/name, error */
}
return 1;
}
@ -34,11 +43,14 @@ int main(int argc, char* argv[])
{
configuration config;
if (ini_parse("test.ini", handler, &config) < 0) {
if (ini_parse("test.ini", handler, &config) < 0)
{
printf("Can't load 'test.ini'\n");
return 1;
}
printf("Config loaded from 'test.ini': version=%d, name=%s, email=%s\n",
config.version, config.name, config.email);
config.version,
config.name,
config.email);
return 0;
}