/*****************************************************************
*
- * Streaming converison support
+ * Streaming conversion support
*
*****************************************************************/
{
int i;
- if (prefixcmp(str, "$Id: "))
+ if (!skip_prefix(str, "$Id: ", &str))
return 0;
- for (i = 5; str[i]; i++) {
+ for (i = 0; str[i]; i++) {
if (isspace(str[i]) && str[i+1] != '$')
return 1;
}