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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
$NetBSD: patch-af,v 1.1 2010/04/29 00:48:48 dholland Exp $
--- src/client/textinterface.c~ 2001-07-31 17:35:33.000000000 +0000
+++ src/client/textinterface.c
@@ -75,7 +75,7 @@ extern char hostname[]; /* my local ho
/*
* just like fgets() but strips newlines like gets().
*/
-static char* getline(char* buf, int len, FILE* stream)
+static char* get_line(char* buf, int len, FILE* stream)
{
char *nl;
@@ -305,7 +305,7 @@ static bool Process_commands(sockbuf_t *
else if (!auto_connect) {
printf("*** Server on %s. Enter command> ", conpar->server_name);
- getline(linebuf, MAX_LINE-1, stdin);
+ get_line(linebuf, MAX_LINE-1, stdin);
if (feof(stdin)) {
puts("");
c = 'Q';
@@ -385,7 +385,7 @@ static bool Process_commands(sockbuf_t *
case 'K':
printf("Enter name of victim: ");
fflush(stdout);
- if (!getline(linebuf, MAX_LINE-1, stdin)) {
+ if (!get_line(linebuf, MAX_LINE-1, stdin)) {
printf("Nothing changed.\n");
continue;
}
@@ -396,7 +396,7 @@ static bool Process_commands(sockbuf_t *
case 'R':
printf("Enter maximum number of robots: ");
fflush(stdout);
- if (!getline(linebuf, MAX_LINE-1, stdin)) {
+ if (!get_line(linebuf, MAX_LINE-1, stdin)) {
printf("Nothing changed.\n");
continue;
}
@@ -410,7 +410,7 @@ static bool Process_commands(sockbuf_t *
case 'M': /* Send a message to server. */
printf("Enter message: ");
fflush(stdout);
- if (!getline(linebuf, MAX_LINE-1, stdin) || !linebuf[0]) {
+ if (!get_line(linebuf, MAX_LINE-1, stdin) || !linebuf[0]) {
printf("No message sent.\n");
continue;
}
@@ -425,7 +425,7 @@ static bool Process_commands(sockbuf_t *
case 'D': /* Shutdown */
if (!auto_shutdown) {
printf("Enter delay in seconds or return for cancel: ");
- getline(linebuf, MAX_LINE-1, stdin);
+ get_line(linebuf, MAX_LINE-1, stdin);
/*
* No argument = cancel shutdown = arg_int=0
*/
@@ -436,7 +436,7 @@ static bool Process_commands(sockbuf_t *
delay = 1;
printf("Enter reason: ");
- getline(linebuf, MAX_LINE-1, stdin);
+ get_line(linebuf, MAX_LINE-1, stdin);
} else {
strlcpy(linebuf, shutdown_reason, sizeof(linebuf));
delay = 60;
@@ -448,7 +448,7 @@ static bool Process_commands(sockbuf_t *
case 'O': /* Tune an option. */
printf("Enter option: ");
fflush(stdout);
- if (!getline(linebuf, MAX_LINE-1, stdin)
+ if (!get_line(linebuf, MAX_LINE-1, stdin)
|| (len=strlen(linebuf)) == 0) {
printf("Nothing changed.\n");
continue;
@@ -456,7 +456,7 @@ static bool Process_commands(sockbuf_t *
printf("Enter new value for %s: ", linebuf);
fflush(stdout);
strcat(linebuf, ":"); len++;
- if (!getline(&linebuf[len], MAX_LINE-1-len, stdin)
+ if (!get_line(&linebuf[len], MAX_LINE-1-len, stdin)
|| linebuf[len] == '\0') {
printf("Nothing changed.\n");
continue;
@@ -516,7 +516,7 @@ static bool Process_commands(sockbuf_t *
case 'T': /* Set team. */
printf("Enter team: ");
fflush(stdout);
- if (!getline(linebuf, MAX_LINE-1, stdin)
+ if (!get_line(linebuf, MAX_LINE-1, stdin)
|| (len = strlen(linebuf)) == 0) {
printf("Nothing changed.\n");
}
|