* @brief Trims leading and trailing whitespace from a string in-place * * @param Str the string to trim * @return VOID */
| 55 | * @return VOID |
| 56 | */ |
| 57 | static VOID |
| 58 | Trim(char * Str) |
| 59 | { |
| 60 | Ltrim(Str); |
| 61 | Rtrim(Str); |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * @brief Inserts a string into another string at a given index |
no test coverage detected