| # | Line 10 | Line 10 | static const char RCSid[] = "$Id$"; | |
|---|---|---|
| 10 | #include "copyright.h" | |
| 11 | ||
| 12 | #include <stdio.h> | |
| 13 | + | #include <string.h> |
| 14 | ||
| 15 | #include "color.h" | |
| 16 | ||
| # | Line 22 | Line 23 | static const char RCSid[] = "$Id$"; | |
| 23 | #define iskill(c) ((c) == 'U'-'@' || (c) == 'X'-'@') | |
| 24 | ||
| 25 | ||
| 26 | < | void |
| 27 | < | editline(buf, c_get, s_put) /* edit input line */ |
| 28 | < | char *buf; |
| 29 | < | int (*c_get)(); |
| 30 | < | void (*s_put)(); |
| 26 | > | extern void |
| 27 | > | editline( /* edit input line */ |
| 28 | > | char *buf, |
| 29 | > | dr_getchf_t *c_get, |
| 30 | > | dr_comoutf_t *s_put |
| 31 | > | ) |
| 32 | { | |
| 33 | static char erases[] = "\b \b"; | |
| 34 | static char obuf[4]; | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |