Removed the space between function names and the opening parenthesis.
[mmh] / sbr / seq_bits.c
index 3d52ed5..589bc03 100644 (file)
 
 
 char *
-seq_bits (struct msgs *mp)
+seq_bits(struct msgs *mp)
 {
        int i;
        size_t len;
        static char buffer[BUFSIZ];
 
-       strncpy (buffer, MBITS, sizeof(buffer));
+       strncpy(buffer, MBITS, sizeof(buffer));
 
        for (i = 0; mp->msgattrs[i]; i++) {
-               len = strlen (buffer);
-               snprintf (buffer + len, sizeof(buffer) - len,
+               len = strlen(buffer);
+               snprintf(buffer + len, sizeof(buffer) - len,
                        "%c%s", FFATTRSLOT + 1 + i, mp->msgattrs[i]);
        }