diff options
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 14 |
1 files changed, 0 insertions, 14 deletions
@@ -27,15 +27,6 @@ char reconnect_timeout = 1; extern void ih(); // defined in intr.s -void txbuf_init(void) { - txbuflen = tx_buf[0] = 0; -} - -void txbuf_set_str(const char *str) { - txbuf_init(); - txbuf_append_str(str); -} - void txbuf_send(void) { /* don't send empty buffer */ if(!txbuflen) return; @@ -51,11 +42,6 @@ void txbuf_send(void) { txbuf_init(); } -void txbuf_send_str(const char *str) { - txbuf_set_str(str); - txbuf_send(); -} - int fn_connect(void) { scr_display(SCR_SERVER); scr_print_current("Connecting to: "); |
