mirror of
https://github.com/byteworksinc/MakeLib.git
synced 2024-12-11 13:50:13 +00:00
commit
fae158fa17
@ -1728,8 +1728,10 @@ if (file) {
|
||||
while (f) {
|
||||
strcpy(name2, f->fName);
|
||||
i = 0;
|
||||
while (name2[i])
|
||||
name2[i] = toupper(name2[i++]);
|
||||
while (name2[i]) {
|
||||
name2[i] = toupper(name2[i]);
|
||||
++i;
|
||||
}
|
||||
if (! strcmp(name2, name))
|
||||
return f->fFile;
|
||||
f = f->fNext;
|
||||
|
Loading…
Reference in New Issue
Block a user