Archived
1
Fork 0
This repository has been archived on 2025-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
libxiv/include/exlparser.h

17 lines
230 B
C
Raw Normal View History

#pragma once
#include <string_view>
#include <vector>
#include <string>
#include "memorybuffer.h"
struct EXLRow {
std::string name;
int id;
};
struct EXL {
std::vector<EXLRow> rows;
};
EXL readEXL(MemorySpan data);