summaryrefslogtreecommitdiffstats
path: root/input.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-10-03 10:18:32 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-10-03 10:18:32 +0000
commit9bb907f2a72721f7da4e67365d0ed6765f945006 (patch)
treecae5422b90725e9c7004801998284b96a3067baf /input.c
parent7ccdbf392d87fc7ad9e79dc5a642c415386a72aa (diff)
Move command handling into the server and tidy up some bits.
Diffstat (limited to 'input.c')
-rw-r--r--input.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/input.c b/input.c
index ea589a0b..2434a24f 100644
--- a/input.c
+++ b/input.c
@@ -1,4 +1,4 @@
-/* $Id: input.c,v 1.18 2007-10-03 09:16:59 nicm Exp $ */
+/* $Id: input.c,v 1.19 2007-10-03 10:18:32 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -172,16 +172,6 @@ input_free(struct input_ctx *ictx)
}
void
-input_parse1(struct screen *s, u_char *buf, size_t len, struct buffer *b)
-{
- struct input_ctx ictx;
-
- input_init(&ictx, s);
- input_parse(&ictx, buf, len, b);
- input_free(&ictx);
-}
-
-void
input_parse(struct input_ctx *ictx, u_char *buf, size_t len, struct buffer *b)
{
enum input_class iclass;