Diff for /libelwix/inc/elwix/aarray.h between versions 1.6.30.1 and 1.8.4.1

version 1.6.30.1, 2018/05/28 22:55:12 version 1.8.4.1, 2019/01/22 16:16:45
Line 12  terms: Line 12  terms:
 All of the documentation and software included in the ELWIX and AITNET  All of the documentation and software included in the ELWIX and AITNET
 Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>  Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>
   
Copyright 2004 - 2018Copyright 2004 - 2019
         by Michael Pounov <misho@elwix.org>.  All rights reserved.          by Michael Pounov <misho@elwix.org>.  All rights reserved.
   
 Redistribution and use in source and binary forms, with or without  Redistribution and use in source and binary forms, with or without
Line 81  typedef struct _tagArray { Line 81  typedef struct _tagArray {
  */   */
 array_t *array_Init(int numItems);  array_t *array_Init(int numItems);
 /*  /*
    * array_Init2() - Initialize dynamic array
    *
    * @arr = Allocated array variable
    * @numItems = Number of Items
    * return: NULL error, != NULL allocated memory for array
    */
   array_t *array_Init2(array_t * __restrict arr, int numItems);
   /*
  * array_Destroy() - Free and destroy dynamic array   * array_Destroy() - Free and destroy dynamic array
  *   *
  * @parr = Array   * @parr = Array
Line 95  void array_Destroy(array_t ** __restrict parr); Line 103  void array_Destroy(array_t ** __restrict parr);
  * return: none   * return: none
  */   */
 void array_Free(array_t * __restrict arr);  void array_Free(array_t * __restrict arr);
   /*
    * array_Reset() - Reset array to initial state
    *
    * @parr = Array
    * @purge = Purge data, if <>0 then will be free entire data memory
    * return: none
    */
   void array_Reset(array_t * __restrict arr, int purge);
   
 /*  /*
  * array_From() - Create and fill array from array with pointers   * array_From() - Create and fill array from array with pointers

Removed from v.1.6.30.1  
changed lines
  Added in v.1.8.4.1


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