inplist.c

来自「linux平台下类似著名的电路板作图软件 Spice的源代码」· C语言 代码 · 共 59 行

C
59
字号
/**********Copyright 1990 Regents of the University of California.  All rights reserved.Author: 1985 Thomas L. Quarles**********//* */    /* INPlist(file,deck,type)     *  provide an input listing on the specified file of the given     *  card deck.  The listing should be of either PHYSICAL or LOGICAL     *  lines as specified by the type parameter.     */#include "spice.h"#include <stdio.h>#include "inpdefs.h"#include "util.h"#include "suffix.h"voidINPlist(file,deck,type)    FILE *file;    card *deck;    int type;{    card *here;    card *there;    if(type == LOGICAL) {        for(here = deck;here != NULL;here = here->nextcard) {            fprintf(file,"%6d : %s\n",here->linenum, here->line);            if(here->error != (char *)NULL) {                fprintf(file,"%s",here->error);            }        }    } else if (type == PHYSICAL) {        for(here = deck;here != NULL;here = here->nextcard) {            if(here->actualLine == (card *)NULL) {                fprintf(file,"%6d : %s\n",here->linenum,here->line);                if(here->error != (char *)NULL) {                    fprintf(file,"%s",here->error);                }            } else {                for(there = here->actualLine;there != NULL;                        there=there->nextcard) {                    fprintf(file,"%6d : %s\n",there->linenum, there->line);                    if(there->error != (char *)NULL) {                        fprintf(file,"%s",there->error);                    }                }            }        }    }}                                    

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?