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.
33 lines
643 B
33 lines
643 B
/**********
|
|
Copyright 1990 Regents of the University of California. All rights reserved.
|
|
Author: 1988 Jeffrey M. Hsu
|
|
**********/
|
|
|
|
/*
|
|
* Stand-alone input routine.
|
|
*/
|
|
|
|
#include "ngspice.h"
|
|
#include "fteinput.h"
|
|
#include "input.h"
|
|
|
|
|
|
extern int inchar(FILE *fp);
|
|
|
|
void
|
|
Input(REQUEST *request, RESPONSE *response)
|
|
{
|
|
|
|
switch (request->option) {
|
|
case char_option:
|
|
response->reply.ch = inchar(request->fp);
|
|
response->option = request->option;
|
|
break;
|
|
default:
|
|
/* just ignore, since we don't want a million error messages */
|
|
response->option = error_option;
|
|
break;
|
|
}
|
|
return;
|
|
|
|
}
|