Keil Logo Arm Logo

CARM User's Guide

Discontinued

assert

Summary
#include <assert.h>

void assert (
  expression);      /* expression to test */
Description

The assert macro tests expression and prints a diagnostic message using the printf library routine if expression is false.

Return Value

None.

Example
#include <assert.h>
#include <stdio.h>       /* required for printf */

void check_parms (
  char *string)
{
  assert (string != NULL);     /* check for NULL ptr */
  printf ("String %s is OK\n", string);
}

Keil logo

Arm logo
Important information

This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies.