Macro

From Computer History Wiki
Revision as of 05:09, 19 August 2017 by Jnc (talk | contribs) (A start...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Macros are text substitions provided in programming language sources; first seen in assemblers, they later appeared in higher-level languages such as C.

Modern highly optimizing compilers (which are prepared to do inline expansion of calls to small subroutines) have made them obsolescent now.

The operation is fairly straight-forward: if macro 'foo' is defined to produce 'barzap', then when the string 'foo' is seen in the source, it is replaced with 'barzap'.

More complex macros can take arguments, and the replacement string includes special syntax to show where to substitute argument strings.