beautypg.com

Standard header files, Diagnostics

Page 440

background image

Appendix B. C Standard Library

UM013037-1212

416

Zilog Developer Studio II – Z8 Encore!
User Manual

The standard include header files are located in the following directory:

<ZDS Installation Directory>\include\std

In the above filepath, <ZDS Installation Directory> is the directory in which Zilog
Developer Studio was installed. By default, this path is:

C:\Program Files\Zilog\ZDSII_Z8Encore!_

In the above filepath, <version> may be

4.11.0

or

5.0.0.

Standard Header Files

The following sections describe the standard header files:

Diagnostics

– see page 416

Character Handling

– see page 417

Errors

– see page 418

Floating Point

– see page 418

Limits

– see page 420

Mathematics

– see page 421

Nonlocal Jumps

– see page 423

Variable Arguments

– see page 423

Standard Definitions

– see page 424

Input/Output

– see page 425

General Utilities

– see page 425

String Handling

– see page 428

Diagnostics

The <

assert.h

> header declares one macro and refers to another macro.

Macro

void assert(int expression);

The behavior of the

assert()

macro depends on whether the

NDEBUG

macro has been

defined or not. On Debug builds (those for which

NDEBUG

is not defined), the

assert

Note: