source: buchla-68k/libsm/rindex.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: 428 bytes
Line 
1/*
2 ============================================================================
3 rindex.c -- BSD style rindex function
4 Version 2 -- 1987-06-12 -- D.N. Lynx Crowe
5 ============================================================================
6*/
7
8char *
9rindex(str, c)
10register char *str;
11char c;
12{
13 register char *cp;
14
15 for (cp = str ;*cp++ ; )
16 ;
17
18 while (cp > str)
19 if (*--cp == c)
20 return(cp);
21
22 return((char *)0);
23}
Note: See TracBrowser for help on using the repository browser.