File: nscriptdecode.cpp

package info (click to toggle)
onscripter 20230825-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 1,412 kB
  • sloc: cpp: 32,593; xml: 114; sh: 105; makefile: 93; python: 10
file content (6 lines) | stat: -rw-r--r-- 98 bytes parent folder | download
1
2
3
4
5
6
#include <stdio.h>
main()
{
    int ch;
    while ((ch = getchar()) != EOF) putchar(ch ^ 0x84);
}