parrotcode: Save object file in native format | |
Contents | C |
src/exec_save.c - Save object file in native format
Save the Parrot_exec_objfile_t
to the native format.
void Parrot_exec_save(PARROT_INTERP, Parrot_exec_objfile_t *obj, const char *file)
Parrot_exec_objfile_t
to file
.static void save_struct(FILE *fp, void *sp, size_t size)
struct
sp
to the file.static void save_zero(FILE *fp)
static void save_int(FILE *fp, int i)
i
to the file.static void save_short(FILE *fp, short s)
s
to the file.include/parrot/exec.h, src/exec_save.h, src/exec.c and src/exec_start.c.
Initial version by Daniel Grunblatt on 2003.6.9.
|