Example #1
0
static void
not_compare(void)
{
	switch (readch()) {
	case '<':
		not_less();
		break;
	case '>':
		not_greater();
		break;
	case '=':
		not_equal();
		break;
	default:
		unreadch();
		bexec(readline());
		break;
	}
}
Example #2
0
static void
not_compare(void)
{
	switch (readch()) {
	case '<':
		not_less();
		break;
	case '>':
		not_greater();
		break;
	case '=':
		not_equal();
		break;
	default:
		unreadch();
		(void)fprintf(stderr, "! command is deprecated\n");
		break;
	}
}
Example #3
0
bool String::operator>=(CVarRef v) const {
  return not_less(m_px, v);
}
Example #4
0
bool String::operator>=(litstr v) const {
  return not_less(m_px, v);
}
Example #5
0
bool String::operator>=(CStrRef v) const {
  return not_less(*this, v);
}