コード例 #1
0
ファイル: term.c プロジェクト: sachinsrikantamurthy/Alcor6L
// (term-clreol) -> Nil
any plisp_term_clreol(any x) {
  term_clreol();
  return Nil;
}
コード例 #2
0
ファイル: term.c プロジェクト: BackupTheBerlios/xlua-svn
// Lua: clreol()
static int luaterm_clreol( lua_State* L )
{
  term_clreol();
  return 0;
}
コード例 #3
0
ファイル: term.c プロジェクト: sachinsrikantamurthy/Alcor6L
// picoc: term_clreol();
static void pterm_clreol(pstate *p, val *r, val **param, int n)
{
  term_clreol();
}