I found this snippet online and have been using it for years. It converts CSV files to string arrays. It works fine for "small" csv files, but will not convert larger ones. Large being 5000+ lines or ~750k size. It just exits the code without errors or string array. I wish to input larger files, how do I do that?
Have you recompiled it? If its been around for years, it could just have a smaller memory model? I don't see anything that would limit it here, at a glance.
the files you mention fit in memory effortlessly on a modern machine...
What is a record_t and data_t? It would be easier to see what if anything is wrong if you posted a small complete program that illustrates your problem.