Skip to content

Commit

Permalink
just formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
AllinCottrell committed Dec 19, 2024
1 parent bd95baa commit 3828e8a
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions lib/src/geneval.c
Original file line number Diff line number Diff line change
Expand Up @@ -20022,17 +20022,11 @@ static int get_op (char *s)
if (s[0] == '=') {
s[1] = '\0';
return B_ASN;
}

if (!strcmp(s, "++")) {
} else if (!strcmp(s, "++")) {
return INC;
}

if (!strcmp(s, "--")) {
} else if (!strcmp(s, "--")) {
return DEC;
}

if (s[1] == '=') {
} else if (s[1] == '=') {
int i;

for (i=0; m_assign[i].c; i++) {
Expand Down

0 comments on commit 3828e8a

Please sign in to comment.