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