R/CRget_time.R

Defines functions CRget_time

Documented in CRget_time

#' Get time in milliseconds
#'
#' Get time in milliseconds since system startup was called
#' return time in milliseconds since system startup was called

CRget_time <- function(status = NULL) {

  if (isStatus(status)) {
    
    return(.Call("SDLget_time", status, PACKAGE = "CREx"))
    
  } else {
    
    return(.Call("SDLget_time", NULL, PACKAGE = "CREx"))
    
  }
}
lorweiuk/CREx documentation built on March 16, 2024, 3:04 a.m.