My Project
Loading...
Searching...
No Matches
az_isdigit.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
12int az_isdigit(int c)
13{
14 if (c >= 48 && c <= 57)
15 return (1);
16 return (0);
17}
int az_isdigit(int c)
Definition az_isdigit.c:12