Blame mailcheck.h

Packit b5e560
/* mailcheck.h -- variables and function declarations for mail checking. */
Packit b5e560
Packit b5e560
/* Copyright (C) 1987,1991,2001,2003,2005,2006,2008,2009 Free Software Foundation, Inc.
Packit b5e560
Packit b5e560
   This file is part of GNU Bash, the Bourne Again SHell.
Packit b5e560
Packit b5e560
   Bash is free software: you can redistribute it and/or modify
Packit b5e560
   it under the terms of the GNU General Public License as published by
Packit b5e560
   the Free Software Foundation, either version 3 of the License, or
Packit b5e560
   (at your option) any later version.
Packit b5e560
Packit b5e560
   Bash is distributed in the hope that it will be useful,
Packit b5e560
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit b5e560
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit b5e560
   GNU General Public License for more details.
Packit b5e560
Packit b5e560
   You should have received a copy of the GNU General Public License
Packit b5e560
   along with Bash.  If not, see <http://www.gnu.org/licenses/>.
Packit b5e560
*/
Packit b5e560
Packit b5e560
#if !defined (_MAILCHECK_H_)
Packit b5e560
#define _MAILCHECK_H_
Packit b5e560
Packit b5e560
/* Functions from mailcheck.c */
Packit b5e560
extern int time_to_check_mail __P((void));
Packit b5e560
extern void reset_mail_timer __P((void));
Packit b5e560
extern void reset_mail_files __P((void));
Packit b5e560
extern void free_mail_files __P((void));
Packit b5e560
extern char *make_default_mailpath __P((void));
Packit b5e560
extern void remember_mail_dates __P((void));
Packit b5e560
extern void init_mail_dates __P((void));
Packit b5e560
extern void check_mail __P((void));
Packit b5e560
Packit b5e560
#endif /* _MAILCHECK_H */