printf("ARGUMENT_NULL in function %s, at line %i in file %s, argument \"%s\"\n",__FUNCTION__,__LINE__,__FILE__,"src");
#endif
return;
}
if(!dst)
{
#if DEBUG
printf("ARGUMENT_NULL in function %s, at line %i in file %s, argument \"%s\"\n",__FUNCTION__,__LINE__,__FILE__,"dst");
#endif
return;
}
if(srcOffset<0)
{
#if DEBUG
printf("ARGUMENT_OUT_OF_RANGE in function %s, at line %i in file %s, argument \"%s\": %s\n",__FUNCTION__,__LINE__,__FILE__,"srcOffset","Non-negative number required.");
#endif
return;
}
if(dstOffset<0)
{
#if DEBUG
printf("ARGUMENT_OUT_OF_RANGE in function %s, at line %i in file %s, argument \"%s\": %s\n",__FUNCTION__,__LINE__,__FILE__,"dstOffset","Non-negative number required.");
#endif
return;
}
if(count<0)
{
#if DEBUG
printf("ARGUMENT_OUT_OF_RANGE in function %s, at line %i in file %s, argument \"%s\": %s\n",__FUNCTION__,__LINE__,__FILE__,"count","Non-negative number required.");
printf("ARGUMENT in function %s, at line %i in file %s: %s\n",__FUNCTION__,__LINE__,__FILE__,"Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection.");
printf("ARGUMENT_OUT_OF_RANGE in function %s, at line %i in file %s, argument \"%s\": %s\n",__FUNCTION__,__LINE__,__FILE__,"index","Value must be non-negative and less than the size of the collection.");
printf("ARGUMENT_OUT_OF_RANGE in function %s, at line %i in file %s, argument \"%s\": %s\n",__FUNCTION__,__LINE__,__FILE__,"index","Value must be non-negative and less than the size of the collection.");