/*
* m_maildir.c -- get the path for the mail directory
*
- * $Id$
+ * This code is Copyright (c) 2002, by the authors of nmh. See the
+ * COPYRIGHT file in the root directory of the nmh distribution for
+ * complete copyright information.
*/
#include <h/mh.h>
char *
m_maildir (char *folder)
{
- register char *cp, *ep;
+ char *cp, *ep;
if ((cp = exmaildir (folder))
&& (ep = cp + strlen (cp) - 1) > cp
char *
m_mailpath (char *folder)
{
- register char *cp;
+ char *cp;
char maildir[BUFSIZ];
if (*folder != '/'
static char *
exmaildir (char *folder)
{
- register char *cp, *pp;
+ char *cp, *pp;
/* use current folder if none is specified */
if (folder == NULL)