Skip to content

Instantly share code, notes, and snippets.

@mmozeiko
mmozeiko / incbin.c
Last active November 21, 2025 11:22
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