Changed nmh-fcc to fcc. See etc/forwcomps. Another catch by the
[mmh] / docs / historical / mh-6.8.5 / sbr / m_getfolder.c
1 /* m_getfolder.c - get the current folder */
2
3 #include "../h/mh.h"
4 #include <stdio.h>
5
6
7 char *m_getfolder()
8 {
9     register char  *folder;
10
11     if ((folder = m_find (pfolder)) == NULL || *folder == 0)
12         folder = defalt;
13     return folder;
14 }