Help for this page

Select Code to Download


  1. or download this
    typedef size_t STRLEN;
    IV     iv  = -12;
    STRLEN len = iv;
    memcpy(src, dst, len);
    
  2. or download this
    typedef ptrdiff_t STRLEN;
    IV     iv  = -12;
    STRLEN len = iv;
    memcpy(src, dst, (size_t)len);