X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fm_name.c;h=ef391e672602b9fdc0813c8ecbdb4a5e8d860ccc;hb=097c84b61603c4a4c5837f3dcc09c30a1e751702;hp=dd8303e352d02adad01c58743bb5f219b77b66d2;hpb=1691e80890e5d8ba258c51c214a3e91880e1db2b;p=mmh diff --git a/sbr/m_name.c b/sbr/m_name.c index dd8303e..ef391e6 100644 --- a/sbr/m_name.c +++ b/sbr/m_name.c @@ -1,9 +1,10 @@ - /* - * m_name.c -- return a message number as a string - * - * $Id$ - */ +** m_name.c -- return a message number as a string +** +** 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 @@ -11,11 +12,11 @@ static char name[BUFSIZ]; char * -m_name (int num) +m_name(int num) { - if (num <= 0) - return "?"; + if (num <= 0) + return "?"; - snprintf (name, sizeof(name), "%d", num); - return name; + snprintf(name, sizeof(name), "%d", num); + return name; }