CBMC
Loading...
Searching...
No Matches
strings.c
Go to the documentation of this file.
1
/* FUNCTION: bzero */
2
3
void
bzero
(
void
*s,
__CPROVER_size_t
n
)
4
{
5
for
(
__CPROVER_size_t
i=0; i<
n
; i++)
6
((
char
*)s)[i]=0;
7
}
ait
ait supplies three of the four components needed: an abstract interpreter (in this case handling func...
Definition
ai.h:562
bzero
void bzero(void *s, __CPROVER_size_t n)
Definition
strings.c:3
src
ansi-c
library
strings.c
Generated by
1.9.8