SDK_WARNING*


C Specification

#include <nitro/misc.h>
SDK_WARNING(exp, ...);

Description

This macro examines a condition, and outputs a character string if the condition is not fulfilled. Unlike SDK_ASSERT(), it does not force an application to terminate.

In accordance with the format character string fmt, a variable number of arguments is allowed.

Because this macro function is a debugging function, it will not perform the output operation in the RELEASE and the FINALROM builds.

Arguments

exp Condition parameter
fmt Display character string (format character string)

Return Values

None

See Also

SDK_ASSERT*()

Revision History

09/01/2004 Added the description that the RELEASE and ROM builds do not output
03/12/2004 Added description
02/27/2004 Initial version