36 lines
777 B
C
36 lines
777 B
C
#ifndef INCLUDED_C_FILEINPUTSTREAM_H
|
|
#define INCLUDED_C_FILEINPUTSTREAM_H
|
|
|
|
#ifndef INCLUDED_C_TYPES_H
|
|
#include <c_Types.h>
|
|
#endif /*INCLUDED_C_TYPES_H*/
|
|
|
|
#ifndef INCLUDED_C_INSTREAM_H
|
|
#include <c_InStream.h>
|
|
#endif /*INCLUDED_C_INSTREAM_H*/
|
|
|
|
|
|
#ifndef INCLUDED_C_ALLOCATOR_H
|
|
#include <c_Allocator.h>
|
|
#endif /*INCLUDED_C_ALLOCATOR_H*/
|
|
|
|
|
|
#ifndef INCLUDED_STDIO_H
|
|
#define INCLUDED_STDIO_H
|
|
#include <stdio.h>
|
|
#endif /*INCLUDED_STDIO_H*/
|
|
|
|
|
|
/* ------------------------------------------------------------------------------------------------------------------ */
|
|
/* */
|
|
|
|
|
|
|
|
|
|
/**
|
|
* @brief Instantiates a File-bound disk Stream reader.
|
|
*/
|
|
c_err_t c_FileInputStream_Create(c_InStream_t** out_stream, FILE* file_handle, c_Allocator_t* allocator);
|
|
|
|
#endif /*INCLUDED_C_FILEINPUTSTREAM_H*/
|