mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
14 lines
No EOL
205 B
C++
14 lines
No EOL
205 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <cstring>
|
|
|
|
class RepackBitsByte
|
|
{
|
|
private:
|
|
uint8_t byteToWrite = 0;
|
|
int inByteToWrite = 0;
|
|
|
|
public:
|
|
int work(uint8_t *in, int length, uint8_t *out);
|
|
}; |