Skip to content

Instantly share code, notes, and snippets.

@mmozeiko
mmozeiko / incbin.c
Last active May 12, 2025 04:08
Include binary file with gcc/clang
#include <stdio.h>
#define STR2(x) #x
#define STR(x) STR2(x)
#ifdef _WIN32
#define INCBIN_SECTION ".rdata, \"dr\""
#else
#define INCBIN_SECTION ".rodata"
#endif