blob: 78280ed1e79f93014907b8ec7711ac630f50fc79 (
plain)
1
2
3
4
5
6
7
8
|
#pragma once
#include <stdint.h>
#define YAY1_HEADER_LENGTH 16
extern int32_t yay1_encode(const uint8_t *in_buf, uint32_t length, uint8_t* out_buf);
extern uint8_t* yay1_decode(const uint8_t* in, uint32_t* out_size);
|