-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDigital.c
More file actions
29 lines (26 loc) · 700 Bytes
/
Copy pathDigital.c
File metadata and controls
29 lines (26 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
////////////////////////////////////////////////////////////////////////////////
//
// Global including files.
//
// Including the files for the system.
//
// These including files are generally used in different operation system.
//
////////////////////////////////////////////////////////////////////////////////
#include "Global.h"
////////////////////////////////////////////////////////////////////////////////
//
// Is digital characater.
//
////////////////////////////////////////////////////////////////////////////////
_BOOL IsDigitalCharacater(_CHAR cValue)
{
//Check value.
if(cValue >= '0' && cValue <= '9')
{
//Return true.
return _TRUE;
}
//Return false.
return _FALSE;
}