My Project
Loading...
Searching...
No Matches
az_bzero.c
Go to the documentation of this file.
1// kernel_lib_printf_functions
2/*
3 * Kernel Lib Printf Functions
4 *
5 * Maintainer: Park Jiwoo
6 *
7 * Copyright (C) 2024 Park-Jiwoo
8 *
9 */
10#include "kernel_pr_he.h"
11
12void az_bzero(void *s, size_t n)
13{
14 if (s == NULL)
15 az_putstr("Error: Null input");
16 az_memset(s, 0, n);
17}
void az_bzero(void *s, size_t n)
Definition az_bzero.c:12
void * az_memset(void *b, int c, size_t len)
Definition az_memset.c:12
void az_putstr(char const *s)
Definition az_putstr.c:12