mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
12 lines
No EOL
178 B
C++
12 lines
No EOL
178 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
struct HeaderInfo
|
|
{
|
|
bool valid = false;
|
|
uint64_t samplerate = 0;
|
|
std::string type;
|
|
};
|
|
|
|
HeaderInfo try_parse_header(std::string file); |