/
MudOS_0.9.19/bin/
MudOS_0.9.19/doc/concepts/
MudOS_0.9.19/doc/driver/
MudOS_0.9.19/doc/efuns/bitstrings/
MudOS_0.9.19/doc/efuns/buffers/
MudOS_0.9.19/doc/efuns/communication/
MudOS_0.9.19/doc/efuns/core/
MudOS_0.9.19/doc/efuns/mappings/
MudOS_0.9.19/doc/efuns/math/
MudOS_0.9.19/doc/efuns/security/
MudOS_0.9.19/doc/lpc/constructs/
MudOS_0.9.19/doc/lpc/types/
MudOS_0.9.19/doc/platforms/
MudOS_0.9.19/etc/
MudOS_0.9.19/mudlib/
MudOS_0.9.19/mudlib/lil/
MudOS_0.9.19/mudlib/lil/clone/
MudOS_0.9.19/mudlib/lil/command/
MudOS_0.9.19/mudlib/lil/data/
MudOS_0.9.19/mudlib/lil/etc/
MudOS_0.9.19/mudlib/lil/include/
MudOS_0.9.19/mudlib/lil/inherit/
MudOS_0.9.19/mudlib/lil/inherit/master/
MudOS_0.9.19/mudlib/lil/log/
MudOS_0.9.19/mudlib/lil/single/
MudOS_0.9.19/mudlib/lil/u/
MudOS_0.9.19/src/testsuite/
MudOS_0.9.19/src/testsuite/clone/
MudOS_0.9.19/src/testsuite/command/
MudOS_0.9.19/src/testsuite/data/
MudOS_0.9.19/src/testsuite/etc/
MudOS_0.9.19/src/testsuite/include/
MudOS_0.9.19/src/testsuite/inherit/
MudOS_0.9.19/src/testsuite/inherit/master/
MudOS_0.9.19/src/testsuite/log/
MudOS_0.9.19/src/testsuite/single/
MudOS_0.9.19/src/testsuite/single/efuns/
MudOS_0.9.19/src/testsuite/u/
.\"causes next line of input to be sent to a specified function
.TH input_to 3

.SH NAME
input_to() - causes next line of input to be sent to a specified function

.SH SYNOPSIS
varargs void input_to(string fun, int flag, ...);

.SH DESCRIPTION
Enable next line of user input to be sent to the local function `fun' as
an argument. The input line will not be parsed by the driver.
.PP
Note that input_to is non-blocking which means that the object calling
input_to does not pause waiting for input.  Instead the object continues
to execute any statements following the input_to.  The specified function
(fun) will not be called until the user input has been collected.
.PP
If "input_to()" is called more than once in the same execution, only the
first call has any effect.
.PP
If optional argument `flag' is non-zero, the line given by the player will
not be echoed, and is not seen if snooped (this is useful for collecting
passwords).
.PP
The function will be called with the user input as its first argument
(a string). Any additional arguments supplied to input_to will be passed on to
as arguments following the user input.

.SH SEE ALSO
call_other(3), get_char(3).