?? input.c
字號:
/**********Copyright 1990 Regents of the University of California. All rights reserved.Author: 1988 Jeffrey M. Hsu**********//* * Stand-alone input routine. */#include "spice.h"#include "fteinput.h"#include "suffix.h"extern int inchar();voidInput(request, response)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;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -