Subversion Repositories HelenOS

Rev

Rev 3269 | Rev 3316 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3269 Rev 3280
Line 142... Line 142...
142
    static char *last;
142
    static char *last;
143
 
143
 
144
    return (cli_strtok_r(s, delim, &last));
144
    return (cli_strtok_r(s, delim, &last));
145
}
145
}
146
 
146
 
147
/* for debugging, not really used */
-
 
148
void cli_free(void **pointer)
-
 
149
{
-
 
150
    if (*pointer != NULL) {
-
 
151
        free(*pointer);
-
 
152
        *pointer = NULL;
-
 
153
    }
-
 
154
}
-
 
155
 
147