]>
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.
12 #define SIZE(n) (sizeof STR(n)) /* Includes NUL. */
17 static char name
[SIZE(INT_MAX
)];
22 snprintf(name
, sizeof name
, "%d", num
);