Years ago, I worked for a company that had just started development on PCs in C. Previously all development was on mainframes in Fortran.
The company policy was that each "module" had it's own source file. This seems reasonable, except a "module" was defined by an entry point. So, in Fortran a "module" was a program, and in C, it was a function.
But having several hundred tiny C files wasn't that bad, because it never happened. Because the company also had very strict documentation procedures, which required 7 pages of documentation (including a cover sheet) for each "module".
So, you were left with the choice: Writing a properly structured and factored design (and then spending the next year writing phone-book sized documentation, of which 90% was boiler-plate and 99.9% was useless), ... OR ... just write massive functions.
Once, while looking through another developer's code, I found a 300-line case block, inside a 500-line switch() statement, inside a 700-line while() loop, inside an 800-line if(), inside a 1000-line while() inside a 3000-line function.