R/toupper_basic.R

Defines functions toupper_basic

Documented in toupper_basic

#' @name toupper_basic
#' @title Uppercase
#' @param x A character vector
#' @return The same as \code{toupper(x)} for ASCII entries. For implementation
#' reasons, strings wider than 32767 characters (bytes) will be ignored.
#' @export
toupper_basic <- function(x) {
  stopifnot(is.character(x))
  .Call("CToUpperBasic", x, PACKAGE = packageName())
}
HughParsonage/healthyAddress documentation built on Jan. 11, 2025, 12:11 a.m.