mirror of
https://github.com/codespell-project/codespell.git
synced 2025-07-04 23:58:28 +08:00

If there's a reason why a change is not a 1:1, do not print it in the list of suggestions.
19 lines
205 B
C
19 lines
205 B
C
|
|
int f(int type)
|
|
{
|
|
return type;
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
int fd, clas;
|
|
/* tis code does nothing */
|
|
|
|
f(1, 2, 3);
|
|
|
|
fd = opem("/tmp/a", O_RDONLY);
|
|
|
|
// buring your cpu
|
|
return f(clas);
|
|
}
|