TITLE(prompt @@ Produce prototype of a help()-file  )
USAGE(
prompt(object, filename=)
BLANK
prompt.default(object,
    filename = paste(name, ".man", sep = ""),
    force.function = FALSE)
)
ALIAS(prompt)
ALIAS(prompt.default)
ARGUMENTS(
ARG(object @@ (typically) an R function  )
ARG(filename @@ name of the output file )
ARG(force.function @@ treat LANG(object) as function in any case )
)
DESCRIPTION(
The main goal is to facilitate the constructing of  LANG(help()) files for
function documentation.
An ASCII file LANG(filename) is produced containing the proper function and
argument names of LANG(object). You have to edit it before
adding the documentation to the source tree, i.e. (currently) to
LANG($RHOME/src/library/base/man/).
)
SEEALSO(
LANG(LINK(help)) and the documentation about writing help-files, currently
in the file LANG($RHOME/mansrc/ABOUT.tex).
)
EXAMPLES(
prompt(plot.default)
prompt(interactive, force.f=TRUE)
)
