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