3dc3418899c084455df82819e1603d4ee77eb69185eb27a42c682ba4bd022e02

Download raw

Created: 2023-12-19 03:40:10.302489 UTC

Size: 2052

Preview (limited to 512 bytes)

"{-# LANGUAGE OverloadedStrings #-}\n\nmodule RFC2616\n (\n Header(..)\n , Request(..)\n , Response(..)\n , request\n , response\n ) where\n\nimport Control.Applicative\nimport Data.Attoparsec.ByteString as P\nimport Data.Attoparsec.ByteString.Char8 (char8, endOfLine, isDigit_w8)\nimport Data.ByteString (ByteString)\nimport Data.Word (Word8)\nimport Data.Attoparsec.ByteString.Char8 (isEndOfLine, isHorizontalSpace)\n\nisToken :: Word8 -> Bool\nisToken w = w <= 127 && notInClass \"\\0-\\31()<>@,;:\\\\\\\"/[]?={} "


Casa is a service provided by the Haskell Foundation │ Originally developed by FP Complete