mirror of
https://github.com/KranX/Vangers.git
synced 2025-11-30 23:15:27 +07:00
10 lines
286 B
C
10 lines
286 B
C
#ifndef XZIP
|
|
#define XZIP
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
|
|
unsigned int ZIP_compress(char* trg,unsigned int trgsize,char* src,unsigned int srcsize);
|
|
unsigned int ZIP_GetExpandedSize(char* p);
|
|
void ZIP_expand(char* trg,unsigned int trgsize,char* src,unsigned int srcsize);
|
|
|
|
#endif |