file.h 892 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*++
  2. Copyright (c) 2015 Minoca Corp.
  3. This file is licensed under the terms of the GNU Lesser General Public
  4. License version 3. Alternative licensing terms are available. Contact
  5. info@minocacorp.com for details.
  6. Module Name:
  7. file.h
  8. Abstract:
  9. This header contains definitions for manipulating files.
  10. Author:
  11. Evan Green 12-Jan-2015
  12. --*/
  13. #ifndef _SYS_FILE_H
  14. #define _SYS_FILE_H
  15. //
  16. // ------------------------------------------------------------------- Includes
  17. //
  18. #include <fcntl.h>
  19. #include <unistd.h>
  20. //
  21. // ---------------------------------------------------------------- Definitions
  22. //
  23. //
  24. // ------------------------------------------------------ Data Type Definitions
  25. //
  26. //
  27. // -------------------------------------------------------------------- Globals
  28. //
  29. //
  30. // -------------------------------------------------------- Function Prototypes
  31. //
  32. #endif