Diff for /libaitio/inc/aitio.h between versions 1.22.2.2 and 1.22.2.3

version 1.22.2.2, 2012/07/29 23:53:41 version 1.22.2.3, 2012/07/30 09:26:56
Line 834  int io_arrayMake(char * __restrict psArgs, int nargs,  Line 834  int io_arrayMake(char * __restrict psArgs, int nargs, 
 */  */
 int io_MakeAV(const char * __restrict csArgs, const char *csDelim,   int io_MakeAV(const char * __restrict csArgs, const char *csDelim, 
                 char * __restrict psAttr, int attrLen, char * __restrict psValue, int valLen);                  char * __restrict psAttr, int attrLen, char * __restrict psValue, int valLen);
   /*
    * io_MakeAV2() Parse and make attribute/value pair over input string
    *
    * @csArgs = Input argument line, will be modified!
    * @csDelim = Delimiter for separate
    * @psAttr = Output Attribute
    * @psValue = Output Value, if ==NULL this element not present value or not wanted for return
    * return: 0 error format; -1 error:: can`t read; >0 ok, number of readed items
   */
   int io_MakeAV2(char ** __restrict psArgs, const char *csDelim, 
                   char * __restrict psAttr, char * __restrict psValue);
   
 /*  /*
  * io_sarrInit() - Create and initialize dynamic split-order array   * io_sarrInit() - Create and initialize dynamic split-order array

Removed from v.1.22.2.2  
changed lines
  Added in v.1.22.2.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>