Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Force 4.0 Reference - strdecrypt() decrypt an encrypted string http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 strdecrypt()        Decrypt an encrypted string
------------------------------------------------------------------------------
 Declaration
   string.hdr

 Syntax
   func char strdecrypt extern
   param const char cStringEncrypted

 Arguments
   cStringEncrypted is a character string encrypted using the
   `` delimiters.

 Return
   The decrypted version of the passed string.

 Description
   The strdecrypt() function converts a string which has been encrypted
   using the string delimiters `` back to its original form. The compiler
   encrypts strings enclosed within `` delimiters automatically.

 Example
   #define EXAMPLE_STRING
   #include example.hdr

   proc Test_strdecrypt
   vardef
      char cString
   enddef
   cString := `This is a string which is hard to find in the executable`
   ? cString
   ? strdecrypt( cString )
   endproc

   proc main
   Test_strdecrypt()
   endproc

See Also: strencrypt() string

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson