Diff for /rpl/src/asprintf.c between versions 1.51 and 1.63

version 1.51, 2015/01/05 13:12:29 version 1.63, 2018/05/30 09:27:30
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.1.19    RPL/2 (R) version 4.1.29
   Copyright (C) 1989-2015 Dr. BERTRAND Joël    Copyright (C) 1989-2018 Dr. BERTRAND Joël
   
   This file is part of RPL/2.    This file is part of RPL/2.
   
Line 24 Line 24
   
   
 int  int
 valsprintf(unsigned char **strp, const char *fmt, va_list ap)  valsprintf(struct_processus *s_etat_processus,
           unsigned char **strp, const char *fmt, va_list ap)
 {  {
     size_t          bs;      size_t          bs;
     size_t          s;      size_t          s;
Line 70  valsprintf(unsigned char **strp, const c Line 71  valsprintf(unsigned char **strp, const c
   
   
 int  int
 alsprintf(unsigned char **strp, const char *fmt, ...)  alsprintf(struct_processus *s_etat_processus,
           unsigned char **strp, const char *fmt, ...)
 {  {
     int         done;      int         done;
     va_list     arg;      va_list     arg;
   
     va_start(arg, fmt);      va_start(arg, fmt);
     done = valsprintf(strp, fmt, arg);      done = valsprintf(s_etat_processus, strp, fmt, arg);
     va_end(arg);      va_end(arg);
   
     return(done);      return(done);

Removed from v.1.51  
changed lines
  Added in v.1.63


CVSweb interface <joel.bertrand@systella.fr>