23 lines
295 B
C
23 lines
295 B
C
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "ms.h"
|
|
|
|
int show_fun(const char *data, size_t len) {
|
|
while (len--) {
|
|
putchar(*data++);
|
|
}
|
|
}
|
|
|
|
int main() {
|
|
system("stty -icanon");
|
|
system("stty -echo");
|
|
|
|
ms_init(show_fun);
|
|
|
|
ms_start();
|
|
|
|
while (1) {
|
|
ms_input(getchar());
|
|
}
|
|
} |