15 changed files with 48 additions and 48 deletions
-
2src/frontend/com_let.c
-
2src/frontend/cpitf.c
-
6src/frontend/dimens.c
-
2src/frontend/help/textdisp.c
-
14src/frontend/inp.c
-
4src/frontend/newcoms.c
-
2src/frontend/numparam/spicenum.c
-
4src/frontend/nutinp.c
-
2src/frontend/plotting/graf.c
-
26src/frontend/subckt.c
-
2src/frontend/vectors.c
-
4src/include/ngspice/stringskip.h
-
16src/misc/string.c
-
2src/misc/tilde.c
-
8src/spicelib/parser/inp2r.c
@ -1,7 +1,7 @@ |
|||
#ifndef ngspice_STRINGSKIP_H |
|||
#define ngspice_STRINGSKIP_H |
|||
|
|||
#define TEMPORARY_SKIP_NON_WS_X0(s) do { while (*(s) && !isspace_c(*(s))) (s)++; } while(0) |
|||
#define TEMPORARY_SKIP_WS_X1(s) do { while ( isspace_c(*(s))) (s)++; } while(0) |
|||
static inline char *TEMPORARY_SKIP_NON_WS_X0(char *s) { while (*s && !isspace_c(*s)) s++; return s; } |
|||
static inline char *TEMPORARY_SKIP_WS_X1(char *s) { while ( isspace_c(*s)) s++; return s; } |
|||
|
|||
#endif |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue