X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fseq_getnum.c;h=3c3b9106c80901a6912675c281186f959ddf9a06;hp=c44f1775b68ffd7fca1e1f0f7123f9393c269cdf;hb=641a9d953e86685f9ca2f3da72e9a94e5bcfd69e;hpb=1691e80890e5d8ba258c51c214a3e91880e1db2b diff --git a/sbr/seq_getnum.c b/sbr/seq_getnum.c index c44f177..3c3b910 100644 --- a/sbr/seq_getnum.c +++ b/sbr/seq_getnum.c @@ -1,22 +1,23 @@ - /* - * seq_getnum.c -- find the index for a sequence - * -- return -1 if sequence doesn't exist - * - * $Id$ - */ +** 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)==0) + return i; - return -1; + return -1; }