|
|
| version 1.1, 2013/01/17 10:05:35 | version 1.1.1.1.2.1, 2013/03/05 13:59:12 |
|---|---|
| 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 |