保持目录结构可以方便根据路径查找使用.
- bash 脚本用来生成 .c 文件
```
chmod +x embed_file_c.sh
./embed_file_c.sh dir2c_test
# or
./embed_file_c.sh dir2c /path/to/resource > _data_enc.c
gcc embed_file.c -o embed_file
./embed_file
```
- 生成的 .c 文件这样使用
```
#include <stdio.h>
#include <stdint.h>
int main(int argc, char *argv[]) {
#define _DATA_ENC_INC 1
#include "_data_enc.c"
for (int i = 0; i < sizeof(_data_enc_lst)/sizeof(_data_enc_lst[0]); ++i) {
printf("%3u, %3u, %s\n", _data_enc_lst.off, _data_enc_lst.len, _data_enc_lst.path);
// &_data_enc[_data_enc_lst.off] is the data ptr, use it by need
}
return 0;
}
```
代码 https://github.com/webd90kb/webd/tree/master/codes/scripts/embed_file_c |
|