EAGLE Help

Builtin Statements


Builtin statements are generally used to open a certain context in which data structures of files can be accessed.

The general syntax of a builtin statement is

name(parameters) statement
where name is the name of the builtin statement, parameters stands for one or more parameters, and statement is the code that will be executed inside the context opened by the builtin statement.

Note that statement can be a compound statement, as in

board(B) {
  B.elements(E) printf("Element: %s\n", E.name);
  B.Signals(S)  printf("Signal: %s\n", S.name);
  }
The following builtin statements are available:
Index Copyright © 2005 CadSoft Computer GmbH