mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-13 18:35:09 -07:00
13 lines
145 B
C
13 lines
145 B
C
#include <unistd.h>
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
char c;
|
|
|
|
while (read(0, &c, 1)) {
|
|
c ^= 3;
|
|
write(1, &c, 1);
|
|
}
|
|
return 0;
|
|
}
|