Makes managing decoding easier. Mac decoding moved to separate cvs module
[squirrelmail.git] / functions / decode / cp1250.php
index 2b7369dd2e12959523c976d6923f70011e5a98d9..a5ca5b82e0ae1fc6fbfd721b92f92a2b3e9ffc89 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-/*
+/**
  * decode/cp1250.php
  * $Id$
  *
  *  Table format:  Format A
  *  Date:          04/15/98
  *  Contact:       cpxlate@microsoft.com
- *
+ * @package squirrelmail
+ * @subpackage decode
  */
 
+/**
+ * Decode a cp1250 string
+ * @param string $string Encoded string
+ * @return string $string Decoded string
+ */
 function charset_decode_cp1250 ($string) {
     global $default_charset;
 
@@ -168,4 +174,4 @@ function charset_decode_cp1250 ($string) {
     return $string;
 }
 
-?>
\ No newline at end of file
+?>