10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include <stddef.h>
#include <stdint.h>
extern void OFRegisterEmbeddedFile(const char *, const uint8_t *, size_t);
static const uint8_t bytes[] = {
EOF
od -vtx1 $1 | sed '/^[^ ][^ ]*$/d;s/ */ /g;s/ $//g;s/^[^ ][^ ]* //;s/ /, 0x/g;s/^/ 0x/;s/$/,/'
cat <<EOF
};
static void __attribute__((__constructor__))
ctor(void)
{
OFRegisterEmbeddedFile("$2", bytes, sizeof(bytes));
|
|
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include <stddef.h>
#include <stdint.h>
extern void OFRegisterEmbeddedFile(const char *, const uint8_t *, size_t);
static const uint8_t bytes[] = {
EOF
od -vtx1 $1 | sed -e '/^[^ ][^ ]*$/d;s/ */ /g' -e 's/ $//g;s/^[^ ][^ ]* //' -e 's/ /, 0x/g' -e 's/^/ 0x/' -e 's/$/,/'
cat <<EOF
};
static void __attribute__((__constructor__))
ctor(void)
{
OFRegisterEmbeddedFile("$2", bytes, sizeof(bytes));
|