Esempio n. 1
0
status_t CFtpStream::Flush()
{
	Automaton(2);
	
	return B_OK;
} /* CFtpStream::Flush */
Esempio n. 2
0
Automaton autoChar(char c) {
  State *s = State::make();
  State *t = State::make();
  s->addTrans(c, t);
  return Automaton(s, t);
}
Esempio n. 3
0
void CFtpStream::Retrieve()
{
	Automaton(1);
} /* CFtpStream::Retrieve */