diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-11-26 14:31:29 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-11-26 14:31:29 -0500 |
commit | 9a15371ba3ab8497ac393d18baeb2f953a3b2762 (patch) | |
tree | f2f797205fd8816af277c3178204dc355cfd4a74 /sway/readline.c | |
parent | d69cbeabc0d0f59847e0118f61ad7e4d76fc95e4 (diff) | |
download | sway-9a15371ba3ab8497ac393d18baeb2f953a3b2762.tar.xz |
Parse command line args for swaymsg
Diffstat (limited to 'sway/readline.c')
-rw-r--r-- | sway/readline.c | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/sway/readline.c b/sway/readline.c deleted file mode 100644 index e75b183f..00000000 --- a/sway/readline.c +++ /dev/null @@ -1,39 +0,0 @@ -#include "readline.h" -#include <stdlib.h> -#include <stdio.h> - -char *read_line(FILE *file) { - int length = 0, size = 128; - char *string = malloc(size); - if (!string) { - return NULL; - } - while (1) { - int c = getc(file); - if (c == EOF || c == '\n' || c == '\0') { - break; - } - if (c == '\r') { - continue; - } - if (length == size) { - char *new_string = realloc(string, size *= 2); - if (!new_string) { - free(string); - return NULL; - } - string = new_string; - } - string[length++] = c; - } - if (length + 1 == size) { - char *new_string = realloc(string, length + 1); - if (!new_string) { - free(string); - return NULL; - } - string = new_string; - } - string[length] = '\0'; - return string; -} |