]> diplodocus.org Git - nmh/blob - sbr/m_gmprot.c
new.c: Order two return statements to match comment.
[nmh] / sbr / m_gmprot.c
1 /* m_gmprot.c -- return the msg-protect value
2 *
3 * This code is Copyright (c) 2002, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information.
6 */
7
8 #include <h/mh.h>
9
10
11 int
12 m_gmprot (void)
13 {
14 char *cp;
15
16 return atooi ((cp = context_find ("msg-protect")) && *cp ? cp : msgprot);
17 }