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.
18 lines
340 B
18 lines
340 B
/*************
|
|
* Header file for tilde.c
|
|
* 1999 E. Rouat
|
|
************/
|
|
|
|
#ifndef ngspice_TILDE_H
|
|
#define ngspice_TILDE_H
|
|
|
|
char * tildexpand(const char *string);
|
|
|
|
int get_local_home(size_t n_byte_buf, char **p_buf);
|
|
|
|
|
|
#ifdef HAVE_PWD_H
|
|
int get_usr_home(const char *usr, size_t n_byte_buf, char **p_buf);
|
|
#endif
|
|
|
|
#endif /* include guard */
|