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