ccgmsterm/test/echo.c
2022-02-18 15:57:27 -08:00

13 lines
199 B
C

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include "inout.h"
int
main(int argc, char **argv) {
while (!feof(stdin)) {
int c = _inbyte(0);
_outbyte(c);
}
}