Esempio n. 1
0
static int load(RBin *bin) {
	return (bin->cur->xtr_obj = r_bin_fatmach0_new (bin->file))?
		R_TRUE: R_FALSE;
}
Esempio n. 2
0
static bool load(RBin *bin) {
	return ((bin->cur->xtr_obj = r_bin_fatmach0_new (bin->file)) != NULL);
}
Esempio n. 3
0
static int load(RBin *bin) {
	if ((bin->bin_obj = r_bin_fatmach0_new (bin->file)))
		return R_TRUE;
	return R_FALSE;
}