Help for this page

Select Code to Download


  1. or download this
    const char* fcn(void);
    
  2. or download this
    int fcn(char *buffer, int bufsize);
    
  3. or download this
    const int bufsize = 16;
    int len;
    ...
    
    len = fcn(SvPV_nolen(RETVAL), bufsize);
    SvCUR_set(RETVAL, len);