Home
last modified time | relevance | path

Searched refs:rot13 (Results 1 – 4 of 4) sorted by relevance

/external/compiler-rt/test/BlocksRuntime/
Dk-and-r.c15 char (^rot13)(); in main() local
16 rot13 = ^(char c) { return (char)(((c - 'a' + 13) % 26) + 'a'); }; in main()
17 char n = rot13('a'); in main()
18 char c = rot13('p'); in main()
/external/python/cpython2/Lib/encodings/
Drot_13.py114 def rot13(infile, outfile): function
119 rot13(sys.stdin, sys.stdout)
/external/mksh/src/
Ddot.mkshrc90 \\builtin command -v rot13 >/dev/null || \\builtin alias rot13='tr \
479 …i_alias[nalias]=rot13; b_alias[nalias++]='tr abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ …
/external/python/cpython2/Doc/library/
Dcodecs.rst1166 | rot_13 | rot13 | Returns the Caesar-cypher |