-/*
- * r1bindex.c -- Given a string and a character, return a pointer
+/* r1bindex.c -- Given a string and a character, return a pointer
* -- to the right of the rightmost occurrence of the
* -- character. If the character doesn't occur, the
* -- pointer will be at the beginning of the string.
* complete copyright information.
*/
-#include <h/mh.h>
+#include "h/mh.h"
+#include "r1bindex.h"
+/* Does not return NULL. */
char *
r1bindex(char *str, int chr)
{