- Function
Fill a memory area.
- Header
- Declaration
void* __fastcall__ memset (void* p, int val, size_t count);- Description
memsetfills the memory area pointed to bypwith the valueval. The function returnsp.- Limits
- The function is only available as fastcall function, so it may only be used in presence of a prototype.
- Availability
ISO 9899
- See also
- Example
None.