replaces first found occurence of "$N" pattern with itoa of integer, where N=index
| 3975 | |
| 3976 | /// replaces first found occurence of "$N" pattern with itoa of integer, where N=index |
| 3977 | bool lString16::replaceIntParam(int index, int replaceNumber) |
| 3978 | { |
| 3979 | return replaceParam( index, lString16::itoa(replaceNumber)); |
| 3980 | } |
| 3981 | |
| 3982 | static int decodeHex( lChar16 ch ) |
| 3983 | { |
no outgoing calls
no test coverage detected