I wrote following 2 ltrim functions (function which removes white-spaces from left side of the string):
1. (putting here this code to not get such code as an answer)
void ltrim(char * str, int size)
{
char const *start = str;
char const *end = start + size;
for(;*start && (*start==' ' || *start=='\n' || *start=='\r' || *start=='\t');++start);
while(start != end)
{
*str = *start;
++start;
++str;
}
*str='\0';
}
2.
void ltrim(char * str, int size)
{
char const *start = str;
char const *end = start + size;
for(;*start && (*start==' ' || *start=='\n' || *start=='\r' || *start=='\t');++start);
memcpy(str, start, end-start);
*(str + (end - start)) = '\0';
}
Does second version safe?
P.S. I have tried and it works, but not sure that memcpy is safe in this case.
isspace()function with prototype in<ctype.h>:) – pmg Jun 24 '11 at 13:42'\f'and'\v'more ... and your code looks more beautiful:for (; *start && isspace((unsigned char)*start); ++start);– pmg Jun 24 '11 at 13:50*start && strchr(" \n\r\t", *start)– sth Jun 24 '11 at 13:57