summaryrefslogblamecommitdiff
path: root/zap/source/any/mem/srch.c
blob: 494e2d897278a3a51428002f158b709f4763d3a5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                                                                     
/*
	Copyright 2022-2023 Gabriel Jensen.
	This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
	If a copy of the MPL was not distributed with this file, You can obtain one at <https://mozilla.org/MPL/2.0>.
*/

#include <zap/mem.h>

void * zap_srch(void const * const _buf,zap_byte const _val,zap_sz const _num) {
	zap_byte const * buf;
	zap_byte * const stop = (zap_byte *)_buf + _num;
	for (buf = _buf;buf != stop;++buf) {
		if (*buf == _val) {
			return (void *)buf;
		}
	}
	return zap_nullptr;
}