source: buchla-68k/libsm/strlcmp.c@ f40a309

Last change on this file since f40a309 was f40a309, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Unix line breaks.

  • Property mode set to 100644
File size: 726 bytes
Line 
1/*
2 ============================================================================
3 strlcmp(s,l) -- compare string s to list l
4 Version 1 -- 1987-03-03 -- D.N. Lynx Crowe
5
6 Compares string s to each entry in the list l of strings
7 until a match is found or until list l is exhausted.
8 List l consists of a zero-entry terminated array of
9 pointers to zero terminated strings.
10 String s must be zero terminated.
11
12 Returns 0 if no match was found, or the 1-origin index
13 of the string in the list l.
14 ============================================================================
15*/
16
17int
18strlcmp(s,l)
19char *s, *l[];
20{
21 int rc;
22
23 rc = 0;
24
25 while (l[rc]) {
26
27 if (0 == strcmp(s, l[rc]))
28 return(++rc);
29
30 rc++;
31 }
32
33 return(0);
34}
Note: See TracBrowser for help on using the repository browser.