-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetCommand.c
71 lines (54 loc) · 1.49 KB
/
getCommand.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include "getCommand.h"
#define ll long long
#define KEY_UP 72
char** SplitCommand(char* command_str) {
char** tokens = (char**)malloc(sizeof(char*) * 512);
char* token = strtok(command_str, " ");
ll i = 0;
while (token != NULL) {
tokens[i] = (char*)malloc(sizeof(char) * 512);
tokens[i] = token;
token = strtok(NULL, " ");
i++;
}
tokens[i] = NULL;
return tokens;
}
char** SplitCommands(char* overall_str) {
char** tokens = (char**)malloc(sizeof(char*) * 5120);
char* token = strtok(overall_str, ";");
ll i = 0;
while (token != NULL) {
tokens[i] = (char*)malloc(sizeof(char) * 512);
tokens[i] = token;
token = strtok(NULL, ";");
i++;
}
tokens[i] = NULL;
return tokens;
}
char* getCommands() {
ll str_size = 8192, pos = 0;
char* command_str = (char*)malloc(sizeof(char) * str_size);
while(1) {
char character = getchar();
// printf("%c %d\t", character, character);
if (character == '\n' || character == EOF) {
// printf("%c\nLOLOL\n", character);
command_str[pos] = '\0';
break;
}
if (character == 27) {
command_str[pos] = '~';
}
else {
command_str[pos] = character;
}
pos++;
if (pos > str_size) {
str_size += 1024;
command_str = realloc(command_str, str_size);
}
}
return command_str;
}