xref: /original-bsd/lib/libc/string/strrchr.c (revision 09b04dfe)
1 /*
2  * Copyright (c) 1988 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #if defined(LIBC_SCCS) && !defined(lint)
9 static char sccsid[] = "@(#)strrchr.c	5.7 (Berkeley) 06/01/90";
10 #endif /* LIBC_SCCS and not lint */
11 
12 #include <string.h>
13 
14 char *
15 strrchr(p, ch)
16 	char *p, ch;
17 {
18 	return(rindex(p, ch));
19 }
20