X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fseq_getnum.c;h=4605915dee6c9a3be71a42e193cefc57f2b237df;hb=452df42b9645e99101184f28518652646ad75ba7;hp=251b60918da432e7d96511cbed60ea043e069bd6;hpb=5dd6771b28c257af405d7248639ed0e3bcdce38b;p=mmh diff --git a/sbr/seq_getnum.c b/sbr/seq_getnum.c index 251b609..4605915 100644 --- a/sbr/seq_getnum.c +++ b/sbr/seq_getnum.c @@ -1,24 +1,23 @@ - /* - * seq_getnum.c -- find the index for a sequence - * -- return -1 if sequence doesn't exist - * - * 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_getnum.c -- find the index for a sequence +** -- return -1 if sequence doesn't exist +** +** 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 int -seq_getnum (struct msgs *mp, char *seqname) +seq_getnum(struct msgs *mp, char *seqname) { - int i; + int i; - for (i = 0; mp->msgattrs[i]; i++) - if (!strcmp (mp->msgattrs[i], seqname)) - return i; + for (i = 0; mp->msgattrs[i]; i++) + if (!strcmp(mp->msgattrs[i], seqname)) + return i; - return -1; + return -1; }