Go to the first, previous, next, last section, table of contents.


A Note on Identifiers

External identifiers that begin with the underscore (`_') character are reserved under the rules of ANSI C to the compiler and libraries. In order to make the DB library as portable as possible, its own external identifiers do not begin with underscores (since otherwise they might conflict with external identifiers used by a standard library).

External identifiers beginning with `db_' are reserved for the use of the DB library. These names are used for functions, global variables that are intended for the private use of the DB library; your programs should not need to use them. You should avoid defining functions or global variables with such names in your programs.

External identifiers beginning with `DB_' are used for constants and data types defined within `<ecg/db.h>'. Use these identifiers as needed in your programs, but avoid redefining them.


Go to the first, previous, next, last section, table of contents.



George B. Moody (george@hstbme.mit.edu)