summaryrefslogtreecommitdiff
path: root/ax/source/algo/fill.c
blob: 36961fd7fe19f1cce59df754a0512685148e3def (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
	Copyright 2022 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 <ax/priv.h>

#include <ax/algo.h>

void ax_fill(void * const _ptr,ax_i02 const _num,unsigned char const _byte) {
	unsigned char *       pos      = _ptr;
	unsigned char * const afterbuf = pos + _num;
	for (;pos != afterbuf;++pos) {*pos = _byte;}
}