| 544 | */ |
| 545 | |
| 546 | char **CSLInsertString(char **papszStrList, int nInsertAtLineNo, |
| 547 | const char *pszNewLine) |
| 548 | { |
| 549 | char *apszList[2] = {const_cast<char *>(pszNewLine), nullptr}; |
| 550 | |
| 551 | return CSLInsertStrings(papszStrList, nInsertAtLineNo, apszList); |
| 552 | } |
| 553 | |
| 554 | /********************************************************************** |
| 555 | * CSLRemoveStrings() |
no test coverage detected