Archive: ROT13 header file


ROT13 header file
header file for the famous ROT13 string codec, including ROT5 functionality.
ENJOY!
:D

more information at http://www.rot13.de ;)


doesnt compile...
Uppercase chars are converted to lowercase so I guess its not proper ROT13 either


There are a couple of comments that are placed directly after a command - put a space between the command and the comment, and it'll work.


works fine for me without the spaces. (latest cvs compilation)

and, yep anders, you're right. its not proper rot13 because StrCmp isnt casesensitive yet :)

so, atm its case insensitive.

attached the file with spaces to fix the compile errors for you :)


- smaller script size, less macro includes.
- preparation for case sensitivity.


For case-sensitive compares you can use LogicLib.nsh and

${If} x S== y
:)

Or use lstrcmp API
http://nsis.sourceforge.net/LStrCmp

-Stu