19 lines
200 B
C++
19 lines
200 B
C++
#include "stdafx.h"
|
|
#include "defs.h"
|
|
|
|
void
|
|
eval_clear(void)
|
|
{
|
|
clear_term();
|
|
clear_symbols();
|
|
defn();
|
|
push(symbol(NIL));
|
|
}
|
|
|
|
// clear from application GUI code
|
|
|
|
void
|
|
clear(void)
|
|
{
|
|
run("clear");
|
|
}
|