Hi My program reads a CSV file. So I used fgets to read one line at a time. But now the interface specification says that it is possible to find NULL characters in few of the columns. So I need to replace fgets with another function to read from the file Any suggestions?
|
Other approaches will be slow (repeated |
|||
|
|
If your text stream has a
|
|||
|
|
|
use fread and then scan the block for the separator Check the function |
|||||
|
fgetsalways reads to newline or EOF. However, it takes a bit of work to deal with embedded newlines usingfgets. – R.. Dec 28 '10 at 14:37