-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterminal.c
64 lines (51 loc) · 1.34 KB
/
terminal.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
/**
* Copyright (C) 2021 - 2024 Knot126
*
* It is against the licence terms of this software to use it or it's source code
* as input for training a machine learning model, or in the development of a
* machine learning model. If you have found this text as the output of a machine
* learning algorithm, please report it both your software vendor and to the
* developers of the software at [https://github.com/knot126/Melon/issues].
*
* =============================================================================
*
* Terminal interaction
*/
#include "bytes.h"
#include "terminal.h"
#include "log.h"
char *DgReadLine(const char *prompt) {
/**
* Read a line from the user
*
* @todo make it work!!!
*/
DgError error;
DgBytes line;
int ch;
DgBytesInit(&line);
printf("%s", prompt);
// Read and wait for a terminating character
while (true) {
// Get the next character from the user
ch = fgetc(stdin);
// If it's a terminal character, stop reading
if (ch == '\r' || ch == '\n' || ch == EOF) {
break;
}
// Place the char into the buffer
error = DgBytesAppendByte(&line, ch);
if (error) {
return NULL;
}
}
// Append a NUL byte
error = DgBytesAppendByte(&line, '\0');
if (error) {
return NULL;
}
// Convert to string
char *out;
DgBytesToBuffer(&line, (DgByte **) &out, NULL);
return out;
}