summaryrefslogtreecommitdiff
path: root/libraries/base/tests/hGetBuf002.hs
blob: 4630fba738a4173466748b9b7dd948dd4138925c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import System.IO
import Foreign
import Foreign.C

main = do test True; test False

test blocking = do
  h <- openBinaryFile "hGetBuf002.hs" ReadMode

  let sz = 42
      loop = do
         b <- allocaBytes sz $ \ptr -> do
                r <- (if blocking then hGetBuf else hGetBufNonBlocking) h ptr sz
                if (r == 0)
                   then return True
                   else do s <- peekCStringLen (ptr,r)
                           putStr s
                           return False
         if b then return () else loop -- tail call

  loop