My Project
Loading...
Searching...
No Matches
C_lib
include_printf
az_putstr.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
12
void
az_putstr
(
char
const
*s)
13
{
14
int
i;
15
16
i = 0;
17
while
(s[i])
18
{
19
kernel_putchar
(s[i]);
20
i++;
21
}
22
}
kernel_putchar
void kernel_putchar(char c)
Definition
az_putchar.c:13
az_putstr
void az_putstr(char const *s)
Definition
az_putstr.c:12
kernel_pr_he.h
Generated by
1.12.0