You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// Can't set sp_inside_braces_struct=add otherwise Uncrustify starts applying it to initializers combined with old-C-style struct usage.
|
|
|
|
struct in_addr addr = {0};
|
|
// ... --> ...
|
|
struct in_addr addr = { 0 };
|