Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7024 → Rev 7802

/programs/system/shell/system/string.c
144,7 → 144,7
 
char* strrchr(const char* string, int c)
{
char* last_found;
char* last_found = 0; // !
while (*string)
{
if (*string==c)