Added subfoldering from an idea/patch by Thomas Pohl xraven at users.sourceforge...
[squirrelmail.git] / functions / decode / cp1256.php
index 8effc8073835c2a5c09f544f4c3faf5a25702286..bc1259a58383203e067d9f5bf5f3df9207b60242 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-/*
+/**
  * decode/cp1256.php
  * $Id$
  *
  *   Table format:  Format A
  *   Date:          01/5/99
  *   Contact:       cpxlate@microsoft.com
- *
+ * @package squirrelmail
+ * @subpackage decode
  */
 
+/**
+ * decode cp1256-encoded string
+ * @param string $string Encoded string
+ * @return string $string Decoded string
+ */
 function charset_decode_cp1256 ($string) {
     global $default_charset;
 
@@ -168,4 +174,4 @@ function charset_decode_cp1256 ($string) {
     return $string;
 }
 
-?>
\ No newline at end of file
+?>