Esempio n. 1
0
int bmx_cpbb_containsbb(cpBB * bb, cpBB * other) {
	return cpBBcontainsBB(*bb, *other);
}
Esempio n. 2
0
static VALUE
rb_cpBBcontainsBB(VALUE self, VALUE other) {
  int value = cpBBcontainsBB(*BBGET(self), *BBGET(other));
  return value ? Qtrue : Qfalse;
}