diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2005-09-25 10:27:31 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2005-09-25 10:27:31 +0000 |
commit | 63691d7a0f51ca09df58b30d4e62a173b70c4c17 (patch) | |
tree | 8bc2b1b31ffce1045bb8ae8860bcc0c339d6ccdb /fetchmail.h | |
parent | 9edd6d0a0ad275cc7a893bb27a5fc2143dcbc2d0 (diff) | |
download | fetchmail-63691d7a0f51ca09df58b30d4e62a173b70c4c17.tar.gz fetchmail-63691d7a0f51ca09df58b30d4e62a173b70c4c17.tar.bz2 fetchmail-63691d7a0f51ca09df58b30d4e62a173b70c4c17.zip |
Rename isafile -> is_a_file, isidletimout -> is_idletimeout
to keep clear of ctype.h namespace.
svn path=/trunk/; revision=4322
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail.h b/fetchmail.h index bd992827..b3868592 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -465,7 +465,7 @@ void report_at_line (); /* driver.c -- main driver loop */ void set_timeout(int); -int isidletimeout(void); +int is_idletimeout(void); void resetidletimeout(void); int do_protocol(struct query *, const struct method *); @@ -648,7 +648,7 @@ void dump_config(struct runctl *runp, struct query *querylist); int is_host_alias(const char *, struct query *); char *host_fqdn(void); char *rfc822timestamp(void); -flag isafile(int); +flag is_a_file(int); char *rfc2047e(const char*, const char *); void yyerror(const char *); |