Update file_stream.c

This commit is contained in:
Alcaro 2017-12-04 14:31:31 +01:00 committed by GitHub
parent dca30d533f
commit c10859b745
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -114,13 +114,6 @@ struct RFILE
char *buf;
};
FILE* filestream_get_fp(RFILE *stream)
{
if (!stream)
return NULL;
return stream->fp;
}
const char *filestream_get_ext(RFILE *stream)
{
if (!stream)