Parameter Validation - 5.2 English - 68552

AOCL API Guide (68552)

Document ID
68552
Release Date
2025-12-29
Version
5.2 English
// APIs validate parameters and handle gracefully
if (m <= 0 || n <= 0 || k <= 0) {
    // No operation performed, function returns safely
    return;
}

if (a == NULL || b == NULL || c == NULL) {
    // NULL pointers handled without crash
    return;
}