-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathR_21_13.c
executable file
·42 lines (35 loc) · 929 Bytes
/
R_21_13.c
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
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
* Release: 2016-11-01
*
* Example from MISRA C:2012 AMD1 ( THIS IS NOT A TEST SUITE )
*
* Copyright HORIBA MIRA Limited.
*
* See file READ_ME.txt for full copyright, license and release instructions.
*/
/*
* R.21.13
*
* Any value passed to a function in <ctype.h> shall be representable
* as an unsigned char or be the value EOF
*/
#include "mc3_types.h"
#include "mc3_header.h"
#include <ctype.h>
#include <stdio.h>
static bool_t f_13 ( uint8_t a )
{
return (
( isdigit ( ( int32_t ) a ) != 0 ) /* Compliant */
&& ( isalpha ( ( int32_t ) 'b' ) != 0 ) /* Compliant */
&& ( islower ( EOF ) != 0 ) /* Compliant */
&& ( isalpha ( 256 ) != 0 ) /* Non-compliant */
);
}
void R_21_13 ( void )
{
bool_t bl;
bl = f_13( 3U );
use_bool( bl );
}
/* end of R_21_13.c */