diff options
author | James Booth <boothj5@gmail.com> | 2013-01-03 21:39:10 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-01-03 21:39:10 +0000 |
commit | 0cd7d43953aeccd82d1aa2f662e7133db5c6edc3 (patch) | |
tree | 3da6c9a629e2f34e9aa380681f31642996cf7f1f | |
parent | 05292a0eb8bd12c84b22271e55c0bc661a87362d (diff) | |
download | profani-tty-0cd7d43953aeccd82d1aa2f662e7133db5c6edc3.tar.gz |
Removed unused code and comments
-rw-r--r-- | src/input_win.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/input_win.c b/src/input_win.c index bcfcc78b..4eba2d25 100644 --- a/src/input_win.c +++ b/src/input_win.c @@ -181,8 +181,6 @@ inp_get_char(char *input, int *size) // otherwise just append } else { - //cchar_t t = { 0, { ch, 0 } }; - //wadd_wch(inp_win, &t); char bytes[5]; size_t utf_len = wcrtomb(bytes, ch, NULL); int i; @@ -245,8 +243,6 @@ inp_get_next_char(void) void inp_replace_input(char *input, const char * const new_input, int *size) { - int i; - strcpy(input, new_input); *size = strlen(input); inp_clear(); |