diff options
author | Oxore <oxore@protonmail.com> | 2018-12-07 01:29:30 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2018-12-07 03:22:30 +0300 |
commit | 1a75ab85c0555e6f4b3adb1f7a79dc2eb029ac08 (patch) | |
tree | 5537ec08ae9949d23585603dac9d6e2397970cc0 /src/target/test.c | |
parent | 14f2aadae65713192f1ef722050353c4d781f17e (diff) |
Fix lines longer than 80 chars, fix codestyle.pl
codestyle.pl: limit to `src` and `include` dirs only.
Diffstat (limited to 'src/target/test.c')
-rw-r--r-- | src/target/test.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/target/test.c b/src/target/test.c index 0959eaa..e250954 100644 --- a/src/target/test.c +++ b/src/target/test.c @@ -27,14 +27,18 @@ struct u_pair text_fixture[] = { }; -static void *test_utf8_strlen_setup(const MunitParameter params[], void *user_data) { +static void *test_utf8_strlen_setup(const MunitParameter params[], + void *user_data) +{ (void) params; (void) user_data; return text_fixture; } -static MunitResult test_utf8_strlen(const MunitParameter params[], void *fixture) { +static MunitResult test_utf8_strlen(const MunitParameter params[], + void *fixture) +{ (void) params; struct u_pair *f = fixture; @@ -64,6 +68,7 @@ static const MunitSuite test_suite = { MUNIT_SUITE_OPTION_NONE }; -int main(int argc, char **argv) { +int main(int argc, char **argv) +{ return munit_suite_main(&test_suite, NULL, argc, argv); } |