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