[BACK]Return to utf8.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/utf8.c between version 1.9 and 1.10

version 1.9, 2020/03/06 18:12:55 version 1.10, 2020/04/03 02:25:21
Line 246 
Line 246 
         return ret;          return ret;
 }  }
   
   int
   asmprintf(char **outp, size_t sz, int *wp, const char *fmt, ...)
   {
           va_list  ap;
           int      ret;
   
           *outp = NULL;
           va_start(ap, fmt);
           ret = vasnmprintf(outp, sz, wp, fmt, ap);
           va_end(ap);
   
           return ret;
   }
   
 /*  /*
  * To stay close to the standard interfaces, the following functions   * To stay close to the standard interfaces, the following functions
  * return the number of non-NUL bytes written.   * return the number of non-NUL bytes written.

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10