Rearranged whitespace (and comments) in all the code!
[mmh] / sbr / m_name.c
index dd8303e..bc3a681 100644 (file)
@@ -1,8 +1,9 @@
-
 /*
  * m_name.c -- return a message number as a string
  *
- * $Id$
+ * 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 <h/mh.h>
@@ -13,9 +14,9 @@ static char name[BUFSIZ];
 char *
 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;
 }