Reformated comments and long lines
[mmh] / sbr / seq_nameok.c
index e10ef92..e9598c0 100644 (file)
@@ -1,10 +1,10 @@
 /*
- * seq_nameok.c -- check if a sequence name is ok
- *
- * 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.
- */
+** seq_nameok.c -- check if a sequence name is ok
+**
+** 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>
 
@@ -20,9 +20,9 @@ seq_nameok (unsigned char *s)
        }
 
        /*
-        * Make sure sequence name doesn't clash with one
-        * of the `reserved' sequence names.
-        */
+       ** Make sure sequence name doesn't clash with one
+       ** of the `reserved' sequence names.
+       */
        if (!(strcmp (s, "new") &&
                  strcmp (s, "all") &&
                  strcmp (s, "first") &&
@@ -34,17 +34,17 @@ seq_nameok (unsigned char *s)
        }
 
        /*
-        * First character in a sequence name must be
-        * an alphabetic character ...
-        */
+       ** First character in a sequence name must be
+       ** an alphabetic character ...
+       */
        if (!isalpha (*s)) {
                advise (NULL, "illegal sequence name: %s", s);
                return 0;
        }
 
        /*
-        * and can be followed by zero or more alphanumeric characters
-        */
+       ** and can be followed by zero or more alphanumeric characters
+       */
        for (pp = s + 1; *pp; pp++)
                if (!isalnum (*pp)) {
                        advise (NULL, "illegal sequence name: %s", s);