xref: /freebsd/sys/libkern/memchr.c (revision 685dc743dc3b5645e34836464128e1c0558b404b)
11b127017SRafal Jaworowski /*-
2*51369649SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
3*51369649SPedro F. Giffuni  *
41b127017SRafal Jaworowski  * Copyright (c) 1990, 1993
51b127017SRafal Jaworowski  *	The Regents of the University of California.  All rights reserved.
61b127017SRafal Jaworowski  *
71b127017SRafal Jaworowski  * This code is derived from software contributed to Berkeley by
81b127017SRafal Jaworowski  * Chris Torek.
91b127017SRafal Jaworowski  *
101b127017SRafal Jaworowski  * Redistribution and use in source and binary forms, with or without
111b127017SRafal Jaworowski  * modification, are permitted provided that the following conditions
121b127017SRafal Jaworowski  * are met:
131b127017SRafal Jaworowski  * 1. Redistributions of source code must retain the above copyright
141b127017SRafal Jaworowski  *    notice, this list of conditions and the following disclaimer.
151b127017SRafal Jaworowski  * 2. Redistributions in binary form must reproduce the above copyright
161b127017SRafal Jaworowski  *    notice, this list of conditions and the following disclaimer in the
171b127017SRafal Jaworowski  *    documentation and/or other materials provided with the distribution.
18fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
191b127017SRafal Jaworowski  *    may be used to endorse or promote products derived from this software
201b127017SRafal Jaworowski  *    without specific prior written permission.
211b127017SRafal Jaworowski  *
221b127017SRafal Jaworowski  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
231b127017SRafal Jaworowski  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
241b127017SRafal Jaworowski  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
251b127017SRafal Jaworowski  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
261b127017SRafal Jaworowski  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
271b127017SRafal Jaworowski  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
281b127017SRafal Jaworowski  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
291b127017SRafal Jaworowski  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
301b127017SRafal Jaworowski  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
311b127017SRafal Jaworowski  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
321b127017SRafal Jaworowski  * SUCH DAMAGE.
331b127017SRafal Jaworowski  */
341b127017SRafal Jaworowski 
351b127017SRafal Jaworowski #include <sys/cdefs.h>
361b127017SRafal Jaworowski #include <sys/libkern.h>
371b127017SRafal Jaworowski #include <sys/param.h>
381b127017SRafal Jaworowski 
391b127017SRafal Jaworowski void *
memchr(const void * s,int c,size_t n)401b127017SRafal Jaworowski memchr(const void *s, int c, size_t n)
411b127017SRafal Jaworowski {
421b127017SRafal Jaworowski 	if (n != 0) {
431b127017SRafal Jaworowski 		const unsigned char *p = s;
441b127017SRafal Jaworowski 
451b127017SRafal Jaworowski 		do {
461b127017SRafal Jaworowski 			if (*p++ == (unsigned char)c)
471b127017SRafal Jaworowski 				return ((void *)(uintptr_t)(p - 1));
481b127017SRafal Jaworowski 		} while (--n != 0);
491b127017SRafal Jaworowski 	}
501b127017SRafal Jaworowski 	return (NULL);
511b127017SRafal Jaworowski }
52