1
0
mirror of https://github.com/mon/2dxTools.git synced 2024-09-23 19:08:27 +02:00
2dxTools/shared.h
2017-03-23 22:36:32 +10:00

10 lines
190 B
C

#ifndef _SHARED_H
#define _SHARED_H
#include <stdio.h>
void transfer_file(FILE* in, FILE* out, size_t bytes);
size_t file_size(const char* path);
int file_exists(const char *path);
#endif