An open API service indexing awesome lists of open source software.

https://github.com/rxi/cembed

A small utility for embedding files in a C header
https://github.com/rxi/cembed

Last synced: 8 months ago
JSON representation

A small utility for embedding files in a C header

Awesome Lists containing this project

README

          

# cembed
A small utility for embedding files in a C header

```
$ cat test.txt
hello world

$ cat test2.txt
goodbye world

$ cembed -t my_files test.txt test2.txt
static unsigned char test_txt[] = {
104,101,108,108,111,32,119,111,114,108,100,10
};

static unsigned char test2_txt[] = {
103,111,111,100,98,121,101,32,119,111,114,108,100,10
};

static struct { char *filename; unsigned char *data; int size; } my_files[] = {
{ "test.txt", test_txt, (int) sizeof(test_txt) },
{ "test2.txt", test2_txt, (int) sizeof(test2_txt) },
{ 0 }
};
```

## License
This project is free software; you can redistribute it and/or modify it under
the terms of the MIT license. See LICENSE for details.