You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
643 B
38 lines
643 B
/**********
|
|
Copyright 1990 Regents of the University of California. All rights reserved.
|
|
Author: 1985 Wayne A. Christopher, U. C. Berkeley CAD Group
|
|
**********/
|
|
|
|
/*
|
|
*/
|
|
|
|
#include "ngspice.h"
|
|
#include "cpdefs.h"
|
|
#include "modify.h"
|
|
|
|
|
|
char cp_chars[128];
|
|
|
|
static char *singlec = "<>;&";
|
|
|
|
/* Initialize stuff. */
|
|
|
|
void
|
|
cp_init(void)
|
|
{
|
|
char *s, *getenv(const char *);
|
|
|
|
bzero(cp_chars, 128);
|
|
for (s = singlec; *s; s++)
|
|
cp_chars[(int) *s] = (CPC_BRR | CPC_BRL);
|
|
cp_vset("history", VT_NUM, (char *) &cp_maxhistlength);
|
|
|
|
cp_curin = stdin;
|
|
cp_curout = stdout;
|
|
cp_curerr = stderr;
|
|
|
|
cp_ioreset();
|
|
|
|
return;
|
|
}
|
|
|