Diff for /libaitio/inc/aitio.h between versions 1.14.2.3 and 1.14.2.4

version 1.14.2.3, 2012/03/10 15:02:47 version 1.14.2.4, 2012/03/10 15:37:09
Line 441  inline unsigned char *io_Ch2Hex(unsigned char *psLine, Line 441  inline unsigned char *io_Ch2Hex(unsigned char *psLine,
 inline char *io_Hex2Ch(unsigned char *psLine, int lineLen);  inline char *io_Hex2Ch(unsigned char *psLine, int lineLen);
   
 /*  /*
    * io_Path2File() - Parse and make path/filename pair
    *
    * @csArgs = Input argument line
    * @psPath = Output Path, if ==NULL path not returned
    * @pathLen = Size of path array
    * @psFile = Output File
    * @fileLen = Size of file array
    * return: 0 error format; -1 error:: can`t read; >0 ok, number of readed items
    */
   inline int
   io_Path2File(const char * __restrict csArgs, char * __restrict psPath, 
                   int pathLen, char * __restrict psFile, int fileLen);
   
   /*
  * io_arrayInit() - Create and initialize dynamic array   * io_arrayInit() - Create and initialize dynamic array
  * @numItems = Number of Items   * @numItems = Number of Items
  * return: NULL error, != NULL allocated memory for array   * return: NULL error, != NULL allocated memory for array

Removed from v.1.14.2.3  
changed lines
  Added in v.1.14.2.4


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