memset

[DllImport("msvcrt.dll", CallingConvention = CallingConvention.Cdecl, SetLastError = true)]
public static extern IntPtr memset(
   IntPtr dest,
   int c,
   size_t count
);

Microsoft documentation: Link

Last updated