X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;ds=sidebyside;f=sbr%2Fm_name.c;h=ef391e672602b9fdc0813c8ecbdb4a5e8d860ccc;hb=714b5c530ece27ea2835a313013f5b770163403c;hp=bc3a681815ac8fac9e94e8e984819ebcaae43384;hpb=a485ed478abbd599d8c9aab48934e7a26733ecb1;p=mmh diff --git a/sbr/m_name.c b/sbr/m_name.c index bc3a681..ef391e6 100644 --- a/sbr/m_name.c +++ b/sbr/m_name.c @@ -1,10 +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 +** +** 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 @@ -12,11 +12,11 @@ static char name[BUFSIZ]; char * -m_name (int num) +m_name(int num) { if (num <= 0) return "?"; - snprintf (name, sizeof(name), "%d", num); + snprintf(name, sizeof(name), "%d", num); return name; }