move stringutil.h --> src/include/ngspice
This commit is contained in:
parent
33d8e0ce9d
commit
0d7f64657c
14
ChangeLog
14
ChangeLog
|
|
@ -1,3 +1,17 @@
|
||||||
|
2011-12-17 Robert Larice
|
||||||
|
* src/winmain.c ,
|
||||||
|
* src/frontend/inpcom.c ,
|
||||||
|
* src/include/ngspice/Makefile.am ,
|
||||||
|
* src/include/ngspice/memory.h ,
|
||||||
|
* src/misc/Makefile.am ,
|
||||||
|
* src/misc/string.c ,
|
||||||
|
* visualc/vngspice.vcproj :
|
||||||
|
|
||||||
|
Added src/include/ngspice/stringutil.h
|
||||||
|
Removed src/misc/stringutil.h
|
||||||
|
|
||||||
|
move stringutil.h --> src/include/ngspice
|
||||||
|
|
||||||
2011-12-17 Holger Vogt
|
2011-12-17 Holger Vogt
|
||||||
* src/frontend/inpcom.c :
|
* src/frontend/inpcom.c :
|
||||||
allow syntax Gxxx n1 n2 value={equation} or Exxx n1 n2 value={equation}
|
allow syntax Gxxx n1 n2 value={equation} or Exxx n1 n2 value={equation}
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ Author: 1985 Wayne A. Christopher
|
||||||
#include "inpcom.h"
|
#include "inpcom.h"
|
||||||
#include "variable.h"
|
#include "variable.h"
|
||||||
#include "../misc/util.h" /* ngdirname() */
|
#include "../misc/util.h" /* ngdirname() */
|
||||||
#include "../misc/stringutil.h"
|
#include "ngspice/stringutil.h"
|
||||||
#include "ngspice/wordlist.h"
|
#include "ngspice/wordlist.h"
|
||||||
|
|
||||||
#ifdef XSPICE
|
#ifdef XSPICE
|
||||||
|
|
|
||||||
|
|
@ -102,6 +102,7 @@ noinst_HEADERS = \
|
||||||
smpdefs.h \
|
smpdefs.h \
|
||||||
sperror.h \
|
sperror.h \
|
||||||
spmatrix.h \
|
spmatrix.h \
|
||||||
|
stringutil.h \
|
||||||
suffix.h \
|
suffix.h \
|
||||||
swec.h \
|
swec.h \
|
||||||
tfdefs.h \
|
tfdefs.h \
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ extern void txfree(void *ptr);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#include "../misc/stringutil.h" /* va: spice3 internally bzero */
|
#include "ngspice/stringutil.h" /* va: spice3 internally bzero */
|
||||||
|
|
||||||
#define alloc(TYPE) TMALLOC(TYPE, 1)
|
#define alloc(TYPE) TMALLOC(TYPE, 1)
|
||||||
#define MALLOC(x) tmalloc((size_t)(x))
|
#define MALLOC(x) tmalloc((size_t)(x))
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ libmisc_la_SOURCES = \
|
||||||
printnum.c \
|
printnum.c \
|
||||||
printnum.h \
|
printnum.h \
|
||||||
string.c \
|
string.c \
|
||||||
stringutil.h \
|
|
||||||
tilde.c \
|
tilde.c \
|
||||||
tilde.h \
|
tilde.h \
|
||||||
misc_time.c \
|
misc_time.c \
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ Copyright 1990 Regents of the University of California. All rights reserved.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ngspice/ngspice.h"
|
#include "ngspice/ngspice.h"
|
||||||
#include "stringutil.h"
|
#include "ngspice/stringutil.h"
|
||||||
#include "ngspice/dstring.h"
|
#include "ngspice/dstring.h"
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
#include <stdlib.h> // exit codes
|
#include <stdlib.h> // exit codes
|
||||||
#include <stdarg.h> // var. arguments
|
#include <stdarg.h> // var. arguments
|
||||||
#include <assert.h> // assert macro
|
#include <assert.h> // assert macro
|
||||||
#include "misc/stringutil.h" // copy
|
#include "ngspice/stringutil.h" // copy
|
||||||
#include <io.h> // _read
|
#include <io.h> // _read
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
|
||||||
|
|
@ -2934,7 +2934,7 @@
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\src\misc\stringutil.h"
|
RelativePath="..\src\include\ngspice\stringutil.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue