=============================================== ================================
void trim(const char * orig, char * dest)
{
size_t front = 0;
size_t end = sizeof(orig) - 1;
size_t counter = 0;
char * tmp = null;
if (sizeof(orig) > 0)
{
memset(dest, '\0', sizeof(dest));
/* Find the first non-space character */
while (isspace(orig[front]))
{
front++;
}
/* Find the last non-space character */
while (isspace(orig[end]))
{
end--;
}
tmp = strndup(orig + front, end - front + 1);
strncpy(dest, tmp, sizeof(dest) - 1);
free(tmp); //strndup automatically malloc space
}
}
=============================================== ================================
У меня есть строка:
'ABCDEF / G01'
Вышеупомянутая функция должна удалить пробелы и вернуться ко мне:
ABCDEF / G01 '.
Вместо этого я получаю следующее:
'ABCDEF /'
Есть идеи?
Примечание: кавычки просто показывают, что в исходной строке есть пробелы.