#include #include int main(void) { // Raw bytes; not a C string const char data[] = { #embed }; const char *expected = "This text is the contents of foo.data"; if (sizeof data == strlen(expected) && memcmp(data, expected, sizeof data) == 0) { return EXIT_SUCCESS; } else { return EXIT_FAILURE; } }