R/sanitizer.R

Defines functions intOverflowSanitize heapAddressSanitize stackAddressSanitize

Documented in heapAddressSanitize intOverflowSanitize stackAddressSanitize

stackAddressSanitize <- function(x=10) {
    .Call(c_stackAddressSanitize, x)
}

heapAddressSanitize <- function(x=10) {
    .Call(c_heapAddressSanitize, x)
}

intOverflowSanitize <- function(x=31) {
    .Call(c_intOverflow, x)
}

Try the sanitizers package in your browser

Any scripts or data that you put into this service are public.

sanitizers documentation built on July 9, 2023, 6:12 p.m.