|
@@ -364,12 +364,14 @@ termchar console_char(struct console_details *cdp, char ch) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+#ifdef UNWANTED
|
|
void console_string(struct console_details *cdp, const char *chars) {
|
|
void console_string(struct console_details *cdp, const char *chars) {
|
|
int x;
|
|
int x;
|
|
for (x = 0; x < strlen(chars); x++) {
|
|
for (x = 0; x < strlen(chars); x++) {
|
|
console_char(cdp, chars[x]);
|
|
console_char(cdp, chars[x]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+#endif
|
|
|
|
|
|
// extern void log_flush(void);
|
|
// extern void log_flush(void);
|
|
|
|
|
|
@@ -388,6 +390,7 @@ void console_receive(struct console_details *cdp, std::string chars) {
|
|
console_char(cdp, *strit);
|
|
console_char(cdp, *strit);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+#ifdef UNWANTED
|
|
void console_receive(struct console_details *cdp, const char *chars, int len) {
|
|
void console_receive(struct console_details *cdp, const char *chars, int len) {
|
|
int x;
|
|
int x;
|
|
|
|
|
|
@@ -395,3 +398,4 @@ void console_receive(struct console_details *cdp, const char *chars, int len) {
|
|
console_char(cdp, chars[x]);
|
|
console_char(cdp, chars[x]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+#endif
|