Added support for using Squirrelmail without frames
[squirrelmail.git] / functions / decode / big5.php
index bbc6b1b0888642dd5f657301e5499759e77c491d..6a00c39ef5843192b290f88a1c34d3a52bfa5d48 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-/*
+/**
  * decode/big5.php
  * $Id$
  *
  * in the creation of products supporting Unicode.  Unicode, Inc.
  * specifically excludes the right to re-distribute this file directly
  * to third parties or other organizations whether for profit or not.
- *
+ * @package squirrelmail
+ * @subpackage decode
  */
 
+/**
+ * Decode big5 encoded string
+ * @param string $string big5 string
+ * @return string $string decoded string
+ */
 function charset_decode_big5 ($string) {
     global $default_charset;
 
@@ -13765,4 +13771,4 @@ function charset_decode_big5 ($string) {
     return $string;
 }
 
-?>
\ No newline at end of file
+?>