]> git.marmaro.de Git - mmh/blobdiff - sbr/context_find.c
Removed the space between function names and the opening parenthesis.
[mmh] / sbr / context_find.c
index e5ba5ff6e96dd821a4ce3c77c4e3e51fbb267340..64ed8e07287ba72ce91ef5f03e2c3a9353d44ce0 100644 (file)
 
 
 char *
-context_find (char *str)
+context_find(char *str)
 {
        struct node *np;
 
        for (np = m_defs; np; np = np->n_next)
-               if (!mh_strcasecmp (np->n_name, str))
+               if (!mh_strcasecmp(np->n_name, str))
                        return (np->n_field);
 
        return NULL;