Files
pasm/tests/fmemopen.h
2024-01-19 15:56:45 +01:00

6 lines
110 B
C

#ifdef _WIN32
#pragma once
#include <stdio.h>
FILE *fmemopen(void *buf, size_t len, const char *type);
#endif