A preprocessor is a program that processes its input data to produce output that is used as input to another program according to a given set of rules. Typically a preprocessor is used to perform a phase of translation of source code before the next step of compilation.
Preprocessors may be categorised as lexical, syntactic or general purpose. The most familiar example of a lexical preprocessor is the c-preprocessor. Although also used as a general purpose preprocessor, the C preprocessor lacks some of the features of more general macro processors such as m4.