Diff for /libaitio/inc/aitio.h between versions 1.9.2.3 and 1.9.2.4

version 1.9.2.3, 2011/05/19 02:22:46 version 1.9.2.4, 2011/05/19 03:01:19
Line 232  inline void io_arrayDestroy(array_t ** __restrict parr Line 232  inline void io_arrayDestroy(array_t ** __restrict parr
  */   */
 inline void io_arrayFree(array_t * __restrict arr);  inline void io_arrayFree(array_t * __restrict arr);
 /*  /*
    * io_arrayFrom() - Create and fill array from array with pointers
    * @argv = Array with pointers
    * @argc = Number of Items, if 0 walk through argv and stop when reach NULL item
    * return: NULL error, != NULL allocated memory for array
    */
   inline array_t *io_arrayFrom(const char **argv, int argc);
   /*
    * io_arrayTo() - Create and fill array with pointers from dynamic array
    * @arr = Array
    * return: NULL error, != NULL allocated memory for array
    */
   inline char **io_arrayTo(array_t * __restrict arr);
   /*
  * io_arrayLen() - Get last used element in dynamic array (array Length)   * io_arrayLen() - Get last used element in dynamic array (array Length)
  * @arr = Array   * @arr = Array
  * return: -1 error, 0 empty or >0 position of last used element   * return: -1 error, 0 empty or >0 position of last used element

Removed from v.1.9.2.3  
changed lines
  Added in v.1.9.2.4


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