Preparation to begin using phpdocumentor.
[squirrelmail.git] / functions / decode / iso8859-15.php
index 35a665ea15e346872527a6b38d6519370653089b..af83a572dc6fe7b6922a8faa7d3e177c1bf45abf 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-/*
+/**
  * decode/iso8859-15.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 iso8859-15 encoded string
+ * @param string $string Encoded string
+ * @return string $string Decoded string
  */
 function charset_decode_iso8859_15 ($string) {
     global $default_charset;
@@ -153,4 +160,4 @@ function charset_decode_iso8859_15 ($string) {
     return $string;
 }
 
-?>
\ No newline at end of file
+?>