I don't know if this is an option, but the Unix program (and probably readily available on Windows) xxdhas the ability to output the C header:
xxd -i file.bin > file.h
file.h unsigned char, , unsigned int, . , file.c, file.h :
extern unsigned char file[];
extern unsigned int file_len;
. , .