mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
18 lines
248 B
Objective-C
18 lines
248 B
Objective-C
#ifndef Telegram_GZip_h
|
|
#define Telegram_GZip_h
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
NSData *TGGZipData(NSData *data, float level);
|
|
NSData *TGGUnzipData(NSData *data);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|