10 lines
196 B
C
10 lines
196 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
namespace ft8 {
|
||
|
|
||
|
// message should have at least 19 bytes allocated (18 characters + zero terminator)
|
||
|
int unpack77(const uint8_t *a77, char *message);
|
||
|
|
||
|
}
|