From 35f0f40cfabeb49b468c6ae3c68fedded145a022 Mon Sep 17 00:00:00 2001 From: Don Stewart Date: Fri, 4 Jan 2008 16:23:04 -0800 Subject: Move MIME stuff into proper Codec.* namespace. Add copyrights where missing. --- Codec/MIME/QuotedPrintable.hs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Codec/MIME/QuotedPrintable.hs (limited to 'Codec/MIME/QuotedPrintable.hs') diff --git a/Codec/MIME/QuotedPrintable.hs b/Codec/MIME/QuotedPrintable.hs new file mode 100644 index 0000000..514ce4e --- /dev/null +++ b/Codec/MIME/QuotedPrintable.hs @@ -0,0 +1,12 @@ +module MIME.QuotedPrintable where + +import Data.Char + +decode :: String -> String +decode "" = "" +decode ('=':x1:x2:xs) + | isHexDigit x1 && isHexDigit x2 = + chr (digitToInt x1 * 16 + digitToInt x2) : decode xs +decode ('=':xs) = '=':decode xs + -- make it explicit that we propagate other '=' occurrences. +decode (x1:xs) = x1:decode xs -- cgit v1.2.3