Rev 13999 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{checkFF}\alias{checkFF}\title{Check Foreign Function Calls}\usage{checkFF(file, package, lib.loc = .lib.loc,verbose = getOption("verbose"))}\description{Performs checks on calls to compiled code from R code. Currently onlywhether the interface functions such as \code{.C} and \code{.Fortran}are called with argument \code{PACKAGE} specified, which is highlyrecommended to avoid name clashes in foreign function calls.}\arguments{\item{file}{the name of a file containing R code to be checked.}\item{package}{a character string naming an installed package. Ifgiven and \code{file} is not given, the installed R code of thepackage is checked.}\item{lib.loc}{a character vector describing the location of \Rlibrary trees to search for \code{package}.}\item{verbose}{a logical. If \code{TRUE}, additional diagnostics areprinted.}}\seealso{\code{\link{.C}},\code{\link{.Fortran}};\code{\link{Foreign}}.}\examples{checkFF(package = "ts", verbose = TRUE)}\keyword{programming}\keyword{utilities}