]>
diplodocus.org Git - nmh/blob - sbr/m_name.c
1 /* m_name.c -- return a message number as a string
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.
13 #define SIZE(n) (sizeof STR(n)) /* Includes NUL. */
18 if (num
<= 0) return "?";
20 return m_strn(num
, SIZE(INT_MAX
));