Example #1
0
 internal static int Compare(Pointer p1, Pointer p2, int count)
 {
     return(memcmp(p1, p2, (UIntPtr)count));
 }
Example #2
0
 internal static void Fill(Pointer ptr, byte value, int count)
 {
     _memsetDelegate(ptr, value, count);
 }
Example #3
0
 internal static extern void Move(Pointer dest, Pointer src, int size);