Preparation to begin using phpdocumentor.
[squirrelmail.git] / functions / decode / iso-ir-111.php
index bd10ca047bd74d8a8f0a821f469566385ea101e9..cee5069c651f2dae10f5ac85602df799298342f6 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-/*
+/**
  * decode/iso-ir-111.php
  * $Id$
  *
  * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
  * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ *
+ * @package squirrelmail
+ * @subpackage decode
  */
 
+/**
+ * Decode iso-ir-111 encoded strings
+ * @param string $string Encoded string
+ * @return string Decoded string
+ */
 function charset_decode_iso_ir_111 ($string) {
     global $default_charset;
 
@@ -156,4 +164,4 @@ function charset_decode_iso_ir_111 ($string) {
     return $string;
 }
 
-?>
\ No newline at end of file
+?>