20f729d0fd
Refactoring Adding error handling Adding a clang format file Updating gitignore Updating TODO
9 lines
212 B
C
Executable file
9 lines
212 B
C
Executable file
#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
|