-- Copyright (C) 2002-2004 David Roundy
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 2, or (at your option)
-- any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; see the file COPYING.  If not, write to
-- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-- Boston, MA 02110-1301, USA.

module Darcs.SlurpDirectory
 (Slurpy, empty_slurpy, slurp,
  mmap_slurp, co_slurp, slurp_unboring,
  FileContents,
  undefined_time, undefined_size,
  doesFileReallyExist, doesDirectoryReallyExist, isFileReallySymlink,
  wait_a_moment,
  is_dir, is_file,
  get_slurp, slurp_name,
  slurp_has, slurp_has_anycase, slurp_hasfile, slurp_hasdir,
  list_slurpy, list_slurpy_files, list_slurpy_dirs, get_path_list,
  get_filecontents, get_dircontents, get_mtime, get_length,
  slurp_modfile, slurp_remove, slurp_removefile, slurp_removedir,
  write_files,
  SlurpMonad, withSlurpy, writeSlurpy, syncSlurpy
 )
 where

import Darcs.SlurpDirectory.Internal