Phpdocumentor update - sed is your friend for these kinds of things ;)
[squirrelmail.git] / functions / decode / cp1258.php
index 431ad41de6c0e79122db7df0010ac7abf5fd5253..79b4a6c95f19151937b676c981a387a2a9aaf041 100644 (file)
@@ -1,9 +1,8 @@
 <?php
-/*
+/**
  * decode/cp1258.php
- * $Id$
  *
- * Copyright (c) 2003 The SquirrelMail Project Team
+ * Copyright (c) 2003-2004 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This file contains cp1258 decoding function that is needed to read
  *   Date:          04/15/98
  *   Contact:       cpxlate@microsoft.com
  *
+ * @version $Id$
+ * @package squirrelmail
+ * @subpackage decode
  */
 
+/**
+ * Decde a cp1258-encoded string
+ * @param string $string Encoded string
+ * @return string $string Decoded string
+ */
 function charset_decode_cp1258 ($string) {
     global $default_charset;
 
@@ -168,4 +175,4 @@ function charset_decode_cp1258 ($string) {
     return $string;
 }
 
-?>
\ No newline at end of file
+?>