aboutsummaryrefslogtreecommitdiffstats
path: root/src/mem/memzero.c
blob: c92691fd71801fda2b90616984e702510c04287f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/*
 * Copyright (c) 2023 Marc Pervaz Boocha
 *
 * SPDX-License-Identifier: MIT
 */

#include <mem.h>

extern inline void *calt_memzero(void *restrict dest, size_t count);
extern inline void *calt_memzero_null(void *restrict dest, size_t count);