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
811 B
38 lines
811 B
/**********
|
|
Copyright 1990 Regents of the University of California. All rights reserved.
|
|
Author: 1986 Wayne A. Christopher, U. C. Berkeley CAD Group
|
|
**********/
|
|
|
|
/*
|
|
* Standard definitions. This file serves as the header file for std.c and
|
|
* wlist.c
|
|
*/
|
|
|
|
#ifndef ngspice_CPSTD_H
|
|
#define ngspice_CPSTD_H
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
/* FIXME: Split this file and adjust all callers to use new header files */
|
|
#if 0
|
|
#warning "Please use bool.h, wordlist.h or complex.h rather than cpstd.h"
|
|
#endif
|
|
|
|
#include "ngspice/bool.h"
|
|
#include "ngspice/dstring.h"
|
|
#include "ngspice/wordlist.h"
|
|
#include "ngspice/complex.h"
|
|
|
|
/* Externs defined in std.c */
|
|
|
|
extern void printnum(char *buf, double num);
|
|
int printnum_ds(DSTRING *p_ds, double num);
|
|
extern int cp_numdgt;
|
|
|
|
extern void cp_printword(char *string, FILE *fp);
|
|
|
|
|
|
|
|
|
|
#endif
|