Return to Contents

2.4: Types

Both options and functions have types, and this section describes the available types.

2.4.1: Boolean

One of the symbols "True" or "False".

2.4.2: String

A string with C-like syntax. Most ANSI C escape sequences are permitted; please refer to a C manual for the exact syntax.

Examples: "foo \\ \" ", "HTTP 200 OK\r\n"

2.4.3: Integer

An integer in decimal notation.

2.4.4: Enumeration

One of a small number of symbols. All enumerations are described as in this manual as follows: {Fixed, NoOverlap, Contiguous} which would indicate that one of the three symbols "Fixed", "NoOverlap" or "Contiguous" would be legal.


Return to Contents