X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fm_name.c;h=d42c21b623b79b8b3422682cf31f9d82147c60fa;hp=18ee081c9e659638f61d9f28cd196d60dfe10ab3;hb=b6823062c9806496b39ff12bf1fbe43ae127c96c;hpb=5dd6771b28c257af405d7248639ed0e3bcdce38b diff --git a/sbr/m_name.c b/sbr/m_name.c index 18ee081..d42c21b 100644 --- a/sbr/m_name.c +++ b/sbr/m_name.c @@ -1,11 +1,10 @@ - /* - * 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. - */ +** m_name.c -- return a message number as a string (in static memory) +** +** 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 @@ -13,11 +12,12 @@ 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; }