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