strchrnul.c\string\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/string/strchrnul.c
blob: 5e0c1a1a4487667f85525a61a59270d44de32ff7 (plain) (blame)
1
2
3
4
5
6
7
#include <string.h>
char *strchrnul(const char *s, int c)
{
	char *p = strchr(s, c);
	return p ? p : (char *)s + strlen(s);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月04日 12:07:07 +0000

AltStyle によって変換されたページ (->オリジナル) /