mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-08 05:51:09 +00:00
94 lines
2.1 KiB
C
94 lines
2.1 KiB
C
|
/* _______ ____ __ ___ ___
|
||
|
* \ _ \ \ / \ / \ \ / / ' ' '
|
||
|
* | | \ \ | | || | \/ | . .
|
||
|
* | | | | | | || ||\ /| |
|
||
|
* | | | | | | || || \/ | | ' ' '
|
||
|
* | | | | | | || || | | . .
|
||
|
* | |_/ / \ \__// || | |
|
||
|
* /_______/ynamic \____/niversal /__\ /____\usic /| . . ibliotheque
|
||
|
* / \
|
||
|
* / . \
|
||
|
* stdfile.c - stdio file input module. / / \ \
|
||
|
* | < / \_
|
||
|
* By entheh. | \/ /\ /
|
||
|
* \_ / > /
|
||
|
* | \ / /
|
||
|
* | ' /
|
||
|
* \__/
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#include "dumb.h"
|
||
|
|
||
|
|
||
|
|
||
|
static void *dumb_stdfile_open(const char *filename)
|
||
|
{
|
||
|
return fopen(filename, "rb");
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
static int dumb_stdfile_skip(void *f, int32 n)
|
||
|
{
|
||
|
return fseek(f, n, SEEK_CUR);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
static int dumb_stdfile_getc(void *f)
|
||
|
{
|
||
|
return fgetc(f);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
static int32 dumb_stdfile_getnc(char *ptr, int32 n, void *f)
|
||
|
{
|
||
|
return (int32)fread(ptr, 1, n, f);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
static void dumb_stdfile_close(void *f)
|
||
|
{
|
||
|
fclose(f);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
static const DUMBFILE_SYSTEM stdfile_dfs = {
|
||
|
&dumb_stdfile_open,
|
||
|
&dumb_stdfile_skip,
|
||
|
&dumb_stdfile_getc,
|
||
|
&dumb_stdfile_getnc,
|
||
|
&dumb_stdfile_close
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
void DUMBEXPORT dumb_register_stdfiles(void)
|
||
|
{
|
||
|
register_dumbfile_system(&stdfile_dfs);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
static const DUMBFILE_SYSTEM stdfile_dfs_leave_open = {
|
||
|
NULL,
|
||
|
&dumb_stdfile_skip,
|
||
|
&dumb_stdfile_getc,
|
||
|
&dumb_stdfile_getnc,
|
||
|
NULL
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
DUMBFILE *DUMBEXPORT dumbfile_open_stdfile(FILE *p)
|
||
|
{
|
||
|
DUMBFILE *d = dumbfile_open_ex(p, &stdfile_dfs_leave_open);
|
||
|
|
||
|
return d;
|
||
|
}
|