blob: 9b7a95cb6b0646b692bee1523f9c89040347571f [file] [log] [blame]
swissChili1e8b7562021-12-22 21:22:57 -08001#pragma once
2
3#include <kint.h>
4
5struct binfmt
6{
7 bool (*valid)(char header[16]);
8 void (*load)(uchar *buffer, uint len);
9};