3 This file is part of the Public Domain C Library (PDCLib).
\r
4 Permission is granted to use, modify, and / or redistribute at will.
\r
10 #include <_PDCLIB_glue.h>
\r
13 static bool readf( _PDCLIB_fd_t self, void * buf, size_t length,
\r
14 size_t * numBytesRead )
\r
20 static bool writef( _PDCLIB_fd_t self, const void * buf, size_t length,
\r
21 size_t * numBytesWritten )
\r
26 static bool seekf( _PDCLIB_fd_t self, int_fast64_t offset, int whence,
\r
27 int_fast64_t* newPos )
\r
33 static void closef( _PDCLIB_fd_t self )
\r
38 const _PDCLIB_fileops_t _PDCLIB_fileops = {
\r
48 #include <_PDCLIB_test.h>
\r
52 // Tested by stdio test cases
\r
53 return TEST_RESULTS;
\r