1
0
Fork 0
mirror of https://github.com/dirtbags/moth.git synced 2025-01-13 18:35:09 -07:00
moth/games/compaq/memfrob/frob.c
2009-09-03 10:42:28 -06:00

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;
}