Unless it hurts readability, try to keep the variables of the same type
on the same line.
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
static bool parse_line_values(int num_lines, char **lvs, char **lines,
enum gpiod_line_value *values, bool interactive)
{
- char *value;
- char *line;
+ char *value, *line;
int i;
for (i = 0; i < num_lines; i++) {
*/
static int split_words(char *line, int max_words, char **words)
{
- bool in_quotes = false;
- bool in_word = false;
+ bool in_quotes = false, in_word = false;
int num_words = 0;
for (; (*line != '\0'); line++) {