29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# import "OFEmbeddedIRIHandler.h"
#else
# import <ObjFW/OFEmbeddedIRIHandler.h>
#endif
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));
|
|
>
|
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# import "OFEmbeddedIRIHandler.h"
#else
# import <ObjFW/OFEmbeddedIRIHandler.h>
#endif
static const uint8_t bytes[] = {
EOF
od -vtx1 "$1" | cut -d' ' -sf2- | \
sed '/^ *$/d;s/^ *//;s/ *$//;s/ */ /g;s/^/0x/;s/ /, 0x/g;s/$/,/'
cat <<EOF
};
static void __attribute__((__constructor__))
ctor(void)
{
OFRegisterEmbeddedFile(@"$2", bytes, sizeof(bytes));
|