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.
25 lines
803 B
25 lines
803 B
/* general.h */
|
|
/*
|
|
include beforehand the following:
|
|
#include <stdio.h> // NULL FILE fopen feof fgets fclose fputs fputc gets
|
|
#include <stdlib.h>
|
|
the function code is in 'mystring.c' .
|
|
*/
|
|
#include "ngspice/dstring.h"
|
|
#include "ngspice/bool.h"
|
|
|
|
|
|
char *pscopy(SPICE_DSTRINGPTR s, const char *str, const char *stop);
|
|
char *pscopy_up(SPICE_DSTRINGPTR s, const char *str, const char *stop);
|
|
void scopyd(SPICE_DSTRINGPTR a, SPICE_DSTRINGPTR b);
|
|
void scopys(SPICE_DSTRINGPTR a, const char *b);
|
|
void scopy_up(SPICE_DSTRINGPTR a, const char *str);
|
|
void scopy_lower(SPICE_DSTRINGPTR a, const char *str);
|
|
void sadd(SPICE_DSTRINGPTR s, const char *t);
|
|
void cadd(SPICE_DSTRINGPTR s, char c);
|
|
bool ci_prefix(const char *p, const char *s);
|
|
|
|
bool alfa(char c);
|
|
bool alfanum(char c);
|
|
|
|
int yes_or_no(void);
|