0
..
..
.L chrtoi converts the 0-terminated string s to an int and returns the value. The characters in s are converted in order from the left and shifted into the int value until up to the number of characters in an int is reached. This operation is inherently machine-dependent, but at least its defined in one place.
The following \e escape sequences are recognized:
\e ooo The character represented by the octal code ooo .
\ex xx The character represented by the hex code xx .
.L \ea Alert (bell).
.L \eb Backspace.
.L \ef Formfeed.
.L \en Newline.
.L \er Carriage return.
.L \et Horizontal tab.
.L \ev Vertical tab.
.L \eE ESC (escape).
.L \e\e Backslash.
Other characters following \e are undefined (although for backwards compatibility they translate to themselves).