slight optimisation more

This commit is contained in:
Joey Hess 2019-01-11 19:56:31 -04:00
parent c1c976d1fa
commit fc21cccf1c
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
2 changed files with 10 additions and 2 deletions

View file

@ -19,6 +19,8 @@ module Utility.FileSystemEncoding (
encodeBL,
decodeBS,
encodeBS,
decodeBL',
encodeBL',
decodeBS',
encodeBS',
decodeW8,
@ -151,6 +153,12 @@ decodeBS' = encodeW8 . S.unpack
encodeBS' :: FilePath -> S.ByteString
encodeBS' = S.pack . decodeW8
decodeBL' :: L.ByteString -> FilePath
decodeBL' = encodeW8 . L.unpack
encodeBL' :: FilePath -> L.ByteString
encodeBL' = L.pack . decodeW8
{- Recent versions of the unix package have this alias; defined here
- for backwards compatibility. -}
type RawFilePath = S.ByteString