mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-05 06:31:55 +03:00
9 lines
170 B
C
9 lines
170 B
C
|
#ifndef __COMPRESS__GZIP_H__
|
||
|
#define __COMPRESS__GZIP_H__
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void *gzip_uncompress(const void *source, uint64_t sourceLen, uint64_t *outsize);
|
||
|
|
||
|
#endif
|