apple2ix/src/zlib-helpers.h
2014-04-06 21:49:02 -07:00

10 lines
268 B
C

#ifndef _ZLIB_HELPERS_H_
#define _ZLIB_HELPERS_H_
#include "common.h"
const char* inf(const char* const src, int *rawcount); // src : foo.dsk.gz --> foo.dsk
const char* def(const char* const src, const int expected_bytes); // src : foo.dsk --> foo.dsk.gz
#endif