mailing list of musl libc
 help / color / mirror / code / Atom feed
889303f33f4937311ec27a23116a0ff0c8356a0b blob 166 bytes (raw)

1
2
3
4
5
6
7
8
 
#include <wchar.h>

wchar_t *(wcsrchr)(const wchar_t *s, wchar_t c)
{
	const wchar_t *p;
	for (p=s+wcslen(s); p>=s && *p!=c; p--);
	return p>=s ? (wchar_t *)p : 0;
}
debug log:

solving 889303f3 ...
found 889303f3 in https://inbox.vuxu.org/musl/c166b0a43bfeb6f50b341d752ba0230d42eb08ab.1684932942.git.Jens.Gustedt@inria.fr/ ||
	https://inbox.vuxu.org/musl/a6fc4ae313c0362fadb2db179d781da850995c21.1685541439.git.Jens.Gustedt@inria.fr/
found 8961b9e2 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 8961b9e2f8eeeebcc4ac083429ecb2309873e8bf	src/string/wcsrchr.c

applying [1/2] https://inbox.vuxu.org/musl/c166b0a43bfeb6f50b341d752ba0230d42eb08ab.1684932942.git.Jens.Gustedt@inria.fr/
diff --git a/src/string/wcsrchr.c b/src/string/wcsrchr.c
index 8961b9e2..889303f3 100644

Checking patch src/string/wcsrchr.c...
Applied patch src/string/wcsrchr.c cleanly.

skipping https://inbox.vuxu.org/musl/a6fc4ae313c0362fadb2db179d781da850995c21.1685541439.git.Jens.Gustedt@inria.fr/ for 889303f3
index at:
100644 889303f33f4937311ec27a23116a0ff0c8356a0b	src/string/wcsrchr.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).