CBMC
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
strings.c
Go to the documentation of this file.
1/* FUNCTION: bzero */
2
3void 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 supplies three of the four components needed: an abstract interpreter (in this case handling func...
Definition ai.h:562
void bzero(void *s, __CPROVER_size_t n)
Definition strings.c:3