shithub: scc

ref: 4ddb383f2b1ea7f017404f94e9e2683af3bcc43f
dir: /src/libmach/forsect.c/

View raw version
#include <stdio.h>

#include <scc/mach.h>

#include "libmach.h"

int
forsect(Obj *obj, int (*fn)(Objsect *, void *), void *data)
{
	int i;

	for (i = 0; i < obj->nsecs; i++) {
		if ((*fn)(&obj->sections[i], data))
			return 0;
	}

	return 1;
}