fix geadline
This commit is contained in:
parent
cc965024d6
commit
4bd9f50bd4
@ -89,6 +89,8 @@ geadline2(prompt, text)
|
||||
esccode('D');
|
||||
}
|
||||
}
|
||||
} else if (c == '\n') {
|
||||
return buf;
|
||||
} else {
|
||||
size = size + 1;
|
||||
if (size >= capacity) {
|
||||
@ -115,16 +117,11 @@ geadline2(prompt, text)
|
||||
esccode('D');
|
||||
}
|
||||
i = i + 1;
|
||||
if (c == '\n')
|
||||
return buf;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
geadline(prompt)
|
||||
{
|
||||
geadline2(prompt, NULL);
|
||||
}
|
||||
geadline(prompt) => geadline2(prompt, NULL);
|
||||
|
||||
esccode(c)
|
||||
{
|
||||
|
@ -1,3 +1,3 @@
|
||||
yo
|
||||
bozo
|
||||
z^[[Dbo^[[C^[[C^[[Co
|
||||
z[Dbo[C[C[Co
|
||||
|
@ -6,17 +6,13 @@ main()
|
||||
|
||||
ptr = geadline("");
|
||||
test_str(ptr, "yo", "");
|
||||
free(ptr);
|
||||
|
||||
ptr = geadline("");
|
||||
test_str(ptr, "bozo", "");
|
||||
free(ptr);
|
||||
|
||||
ptr = geadline("");
|
||||
test_str(ptr, "bozo", "arrow");
|
||||
free(ptr);
|
||||
|
||||
ptr = geadline("");
|
||||
test_num(ptr, 0, "");
|
||||
free(ptr);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user