Added subfoldering from an idea/patch by Thomas Pohl xraven at users.sourceforge...
[squirrelmail.git] / functions / decode / gb2312.php
index 38be0af38a94ee3794b62277773935100693a0d0..22e9f3df1478124d44458bfcb5e80af13d314d7f 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-/*
+/**
  * decode/gb2312.php
  * $Id$
  *
  * Unicode Standard, and to make copies of this file in any form for
  * internal or external distribution as long as this notice remains
  * attached.
- *
+ * @package squirrelmail
+ * @subpackage decode
+ */
+
+
+/**
+ * Decode gb2312-euk encoded string
+ * @param string $string Encoded string
+ * @return string $string Decoded string
  */
 function charset_decode_gb2312 ($string) {
     global $default_charset;
@@ -7498,4 +7506,4 @@ function charset_decode_gb2312 ($string) {
     return $string;
 }
 
-?>
\ No newline at end of file
+?>