Trim leading whitespace

This commit is contained in:
Devine Lu Linvega 2024-04-07 12:01:06 -07:00
parent d7f41dca3b
commit 361577caad
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,6 @@
<> ((explode ?*)) (?*)
<> (explode ?*) (?*)
(explode hello)
<> (?x pin) (done: ?x)
(explode hello) pin

View File

@ -168,6 +168,7 @@ static int
rewrite(char *incoming)
{
char c, *p = direction ? bank_b : bank_a;
while(*p == 0xa || *p == ' ') p++;
while((c = *p)) {
int i;
if(p[0] == '<' && p[1] == '>') {