13 lines
192 B
C
13 lines
192 B
C
|
|
/*
|
||
|
|
=== PLATFORM IMPLEMENTATION ===
|
||
|
|
Here we define the structs that were left incomplete in platform.h
|
||
|
|
|
||
|
|
===============================
|
||
|
|
*/
|
||
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
struct p_file
|
||
|
|
{
|
||
|
|
FILE *handle;
|
||
|
|
};
|