保持目录结构可以方便根据路径查找使用.
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
#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[i].off, _data_enc_lst[i].len, _data_enc_lst[i].path);
// &_data_enc[_data_enc_lst[i].off] is the data ptr, use it by need
}
return 0;
}
代码 https://github.com/webd90kb/webd/tree/master/codes/scripts/embed_file_c
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.