9 lines
212 B
C
9 lines
212 B
C
#ifndef _IMAGE_SAVER_H_
|
|
#define _IMAGE_SAVER_H_
|
|
|
|
#include <stdio.h>
|
|
|
|
// 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
|