PR_Assert

Writes arguments to the log and terminates execution.

Syntax

#include <prlog.h>

void PR_Assert (
   const char *s, 
   const char *file,
   PRIntn ln);

Parameters

The function has these parameters:

s
A string to be displayed in the log.
file
The file name of the compilation unit containing this function call.
ln
The line number within the specified file of this function call.

Returns

Nothing

Description

This function displays data in the log.

Normally an application would not call this function directly; use PR_ASSERT instead.