remove vceo= and icrating= from bjt model cards

This commit is contained in:
Holger Vogt 2020-08-03 23:11:55 +02:00
parent c69a4d6633
commit e3aad7849c
1 changed files with 22 additions and 0 deletions

View File

@ -8349,6 +8349,28 @@ static void rem_mfg_from_models(struct card *deck)
start++;
}
}
start = strstr(curr_line, "icrating=");
if (start) {
end = nexttok(start);
if (*end == '\0')
*start = '\0';
else
while (start < end) {
*start = ' ';
start++;
}
}
start = strstr(curr_line, "vceo=");
if (start) {
end = nexttok(start);
if (*end == '\0')
*start = '\0';
else
while (start < end) {
*start = ' ';
start++;
}
}
}
}
}