git @ Cat's Eye Technologies Kosheri / master src / save.h
master

Tree @master (Download .tar.gz)

save.h @masterraw · history · blame

/*
 * save.h
 * Structures and prototypes for saving values to processes.
 */

#ifndef __SAVE_H_
#define __SAVE_H_

struct process;
struct value;

int		 value_save(struct process *, struct value *);

#endif /* !__SAVE_H_ */