mirror of
https://github.com/mon/2dxTools.git
synced 2024-11-23 22:10:57 +01:00
10 lines
190 B
C
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 |