12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #include <features.h>
- #ifdef __USE_GNU
- #include "_stdio.h"
- #ifndef __UCLIBC_HAS_GLIBC_CUSTOM_STREAMS__
- #error no custom streams!
- #endif
- #ifndef __BCC__
- FILE *fopencookie(void * __restrict cookie, const char * __restrict mode,
- cookie_io_functions_t io_functions)
- #else
- FILE *_fopencookie(void * __restrict cookie, const char * __restrict mode,
- register cookie_io_functions_t *io_functions)
- #endif
- {
- FILE *stream;
- _IO_cookie_file_t *new_f;
- new_f = malloc(sizeof(_IO_cookie_file_t));
- if (new_f == NULL) {
- return NULL;
- }
- new_f->__fp.__modeflags = __FLAG_FREEFILE;
- #ifdef __STDIO_BUFFERS
- new_f->__fp.__bufstart = NULL;
- #endif
- #ifdef __UCLIBC_HAS_THREADS__
-
- STDIO_INIT_MUTEX(new_f->__fp.__lock);
- #endif
-
- stream = _stdio_fopen(((intptr_t)(INT_MAX-1)), mode, &new_f->__fp, INT_MAX);
- if (stream) {
- stream->__filedes = __STDIO_STREAM_GLIBC_CUSTOM_FILEDES;
- #ifndef __BCC__
- new_f->__gcs = io_functions;
- #else
- new_f->__gcs.read = io_functions->read;
- new_f->__gcs.write = io_functions->write;
- new_f->__gcs.seek = io_functions->seek;
- new_f->__gcs.close = io_functions->close;
- #endif
- new_f->__cookie = cookie;
- __STDIO_STREAM_VALIDATE(stream);
- }
- return stream;
- }
- #ifndef __BCC__
- libc_hidden_def(fopencookie)
- #endif
- #endif
|