summaryrefslogtreecommitdiff
path: root/sys/src/libc/port/runestrchr.c
blob: e4c757dff082e1769d0053360bf1d8747d35916f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <u.h>
#include <libc.h>

Rune*
runestrchr(Rune *s, Rune c)
{
	Rune r;

	if(c == 0)
		while(*s++)
			;
	else
		while((r = *s++) != c)
			if(r == 0)
				return 0;
	return s-1;
}