Intel® oneAPI Math Kernel Library Developer Reference - C
Generates an error message.
error_message = DftiErrorMessage(status);
Name |
Type |
Description |
---|---|---|
status |
MKL_LONG |
Completion status of a function. |
Name |
Type |
Description |
---|---|---|
error_message |
Array of char |
The character string with the error message. |
The error message function generates an error message character string. The function returns a pointer to a constant character string, that is, a character array with terminating '\0' character, and you do not need to free this pointer.
Example Using Status Checking Function shows how this function can be used.
char *DftiErrorMessage( MKL_LONG );