cake icon indicating copy to clipboard operation
cake copied to clipboard

creating embed files

Open thradams opened this issue 3 years ago • 0 comments

Today #embed expand the sequence For instance

  static const char file_txt[] = {
   #embed "stdio.h"
   ,0
  };

becomes

static const char file_txt[] = {
    35,112,113, /*... lot more ... */ 10
   ,0
  };

The idea of this feature is add an option to generate a file with "embed_" prefix that is included resulting in.

  static const char file_txt[] = {
   #include "embed_stdio.h"
   ,0
  };

that looks much more like the original version.

thradams avatar Oct 05 '22 10:10 thradams