Diff for /libelwix/inc/elwix/astr.h between versions 1.1 and 1.2

version 1.1, 2013/01/17 10:05:35 version 1.2, 2013/03/07 16:24:32
Line 115  inline int str_Trim(char * __restrict psLine); Line 115  inline int str_Trim(char * __restrict psLine);
  * return: 0 nothing to do; 1 successful unquoted string   * return: 0 nothing to do; 1 successful unquoted string
  */   */
 inline int str_Unquot(char * __restrict psLine);  inline int str_Unquot(char * __restrict psLine);
   /*
    * str_Upper() - Convert all lower characters to upper
    *
    * @psLine = Text string
    * return: 0 nothing to do; !=0 converted chars
    */
   inline int str_Upper(char * __restrict psLine);
   /*
    * str_Lower() - Convert all upper characters to lower
    *
    * @psLine = Text string
    * return: 0 nothing to do; !=0 converted chars
    */
   inline int str_Lower(char * __restrict psLine);
   
 /*  /*
  * str_Hex2Dig() - Convert from Hex string to digit array   * str_Hex2Dig() - Convert from Hex string to digit array

Removed from v.1.1  
changed lines
  Added in v.1.2


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