blob: 85f2a34d09e7f2f54c8887430cb92563f53a3a1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef PKE_EMBED_EMBEDDED_FILE_H
#define PKE_EMBED_EMBEDDED_FILE_H
#include <stddef.h>
struct embedded_file {
const char *name;
const unsigned char *data;
const size_t size;
};
#endif /* PKE_EMBED_EMBEDDED_FILE_H */
|