My Project
Loading...
Searching...
No Matches
C_lib
include_printf
az_isalpha.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
int
az_isalpha
(
int
c)
13
{
14
if
(c >= 97 && c <= 122)
15
return
(1);
16
if
(c >= 65 && c <= 90)
17
return
(1);
18
return
(0);
19
}
az_isalpha
int az_isalpha(int c)
Definition
az_isalpha.c:12
kernel_pr_he.h
Generated by
1.12.0