diff options
Diffstat (limited to 'src/netrc.h')
-rw-r--r-- | src/netrc.h | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/src/netrc.h b/src/netrc.h index 045b522..d7fcc64 100644 --- a/src/netrc.h +++ b/src/netrc.h @@ -31,17 +31,9 @@ as that of the covered work. */ #ifndef NETRC_H #define NETRC_H -typedef struct _acc_t -{ - char *host; /* NULL if this is the default machine - entry. */ - char *acc; - char *passwd; /* NULL if there is no password. */ - struct _acc_t *next; -} acc_t; - -void search_netrc (const char *, const char **, const char **, int); -void free_netrc (acc_t *l); +#include <stdio.h> + +void search_netrc (const char *, const char **, const char **, int, FILE *); void netrc_cleanup(void); #endif /* NETRC_H */ |