#ifndef _IMAGE_SAVER_H_ #define _IMAGE_SAVER_H_ #include #include // Save machine code from target_code to file at out_path. Returns 0 on success int save_img(char *out_path, uint32_t *target_code); #endif