Preparation to begin using phpdocumentor.
[squirrelmail.git] / functions / decode / cp1253.php
index 268ef2c64b4fd223d871f676dc89e4e1752bfa66..029612553ce212bb900a323f246ad9a30e903143 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-/*
+/**
  * decode/cp1253.php
  * $Id$
  *
  *   Table format:  Format A
  *   Date:          04/15/98
  *   Contact:       cpxlate@microsoft.com
- *
+ * @package squirrelmail
+ * @subpackage decode
  */
 
+/**
+ * Decode cp1253-encoded string
+ * @param string $string Encoded string
+ * @return string $string Decoded string
+ */
 function charset_decode_cp1253 ($string) {
     global $default_charset;
 
@@ -168,4 +174,4 @@ function charset_decode_cp1253 ($string) {
     return $string;
 }
 
-?>
\ No newline at end of file
+?>