1#include <stdio.h>
 2
 3#include "test.h"
 4
 5int main(void) {
 6    printf("Testing embedding of files into binary.\n");
 7
 8    for (unsigned int i = 0; i < test_txt_len; i++) {
 9        printf("%02x ", test_txt[i]);
10    }
11    printf("\n\n");
12
13    for (unsigned int i = 0; i < test_txt_len; i++) {
14        printf("%c", test_txt[i]);
15    }
16    printf("\n\n");
17
18    return 0;
19}