Diff for /libaitio/inc/aitio.h between versions 1.1.1.1.2.1 and 1.1.1.1.2.3

version 1.1.1.1.2.1, 2010/03/02 15:10:19 version 1.1.1.1.2.3, 2010/03/04 08:10:57
Line 83  int ioRegexGet(const char *csRegex, const char *csData Line 83  int ioRegexGet(const char *csRegex, const char *csData
 char *ioRegexReplace(const char *csRegex, const char *csData, const char *csNew);  char *ioRegexReplace(const char *csRegex, const char *csData, const char *csNew);
   
 /*  /*
    * io_MakeArray() Parse and make array of arguments values
    * @psArgs = Input arguments line
    * @csDelim = Delimiter(s) for separate
    * @args = Output array of arguments ... (must be free() after procced function!)
    * @nargs = Requested count of arguments
    * return: 0 error format; -1 error:: can`t read; >0 ok, number of readed items
   */
   int io_MakeArray(char * __restrict psArgs, const char *csDelim, char *** __restrict args, int nargs);
   
   /*
  * ioURLGet() Parse and get data from input URL   * ioURLGet() Parse and get data from input URL
  * @csURL = Input URL line   * @csURL = Input URL line
  * @url = Output parsed URL   * @url = Output parsed URL

Removed from v.1.1.1.1.2.1  
changed lines
  Added in v.1.1.1.1.2.3


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