/src/games/caesar/ |
Makefile | 8 MLINKS= caesar.6 rot13.6 9 SCRIPTS=rot13.sh
|
/src/share/examples/puffs/rot13fs/ |
rot13fs.c | 45 PUFFSOP_PROTOS(rot13) 150 PUFFSOP_SET(pops, rot13, node, readdir); 151 PUFFSOP_SET(pops, rot13, node, read); 152 PUFFSOP_SET(pops, rot13, node, write); 154 if ((pu = puffs_init(pops, argv[0], "rot13", NULL, pflags)) == NULL) 171 /* initialize rot13 tables */
|
/src/tests/lib/libutil/ |
t_snprintb.c | 1083 // rot13 using snprintb, shown here for lowercase letters only. 1085 char rot13 = ch >= 'a' && ch <= 'm' ? ch + 13 local in function:ATF_TC_BODY 1090 snprintf(expected, sizeof(expected), "%#x<%c>", ch, rot13));
|
/src/games/fortune/fortune/ |
fortune.c | 149 static void rot13(char *line, int len); 240 rot13(char *line, int len) function in typeref:typename:void 264 rot13(line, 0); 376 rot13(pat, 0); 1324 rot13(Fortbuf, (sp - Fortbuf));
|