- Function
Fill a memory area with zeroes.
- Header
- Declaration
void __fastcall__ bzero (void* p, size_t count);- Description
bzerofills the memory area pointed to bypwith zero.- Limits
- The function is non standard and therefore only available in non ANSI mode. You should use
memsetinstead.- The function is only available as fastcall function, so it may only be used in presence of a prototype.
- Availability
cc65
- See also
- Example
None.