blob: e5638b8f791d212f7a0fc6d9a5ca5ebbaebca88c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#include <App/StreamApp.proto.h>
class rot13 : public StreamApp {
public:
rot13() : StreamApp("rot13", "Cat a file, but ROT13 it") {}
int run();
};
APP(rot13);
int rot13::run() {
while (!in->eof()) {
String s = in->get();
if (in->eof() && s.empty()) break;
for (u32int i = 0; i < s.size(); i++) {
WChar &c = s[i];
if (c >= WChar('A') and c <= WChar('Z')) {
c += 13;
if (c > WChar('Z')) c -= 26;
}
if (c >= WChar('a') and c <= WChar('z')) {
c += 13;
if (c > WChar('z')) c -= 26;
}
}
*out << s << ENDL;
}
return 0;
}
|