1 /* _PDCLIB_open( char const * const, int )
3 This file is part of the Public Domain C Library (PDCLib).
4 Permission is granted to use, modify, and / or redistribute at will.
7 /* This is a stub implementation of open.
14 #include "_PDCLIB_glue.h"
16 bool _PDCLIB_open( _PDCLIB_fd_t * pFd, const _PDCLIB_fileops_t ** pOps,
17 char const * const filename, unsigned int mode )
26 #include "_PDCLIB_test.h"