Tagged Questions

1
vote
1answer
278 views

How I can skip a blank line in an input file when using strtok?

I want to pass lines of a file using strtok; the values are comma separated. However, strtok also reads blank lines which only contain spaces. Isn't it suppose to return a null pointer in such a ...
0
votes
2answers
29 views

Which method to use in searching for a line in a file

I have a file with path names to files: /my/path1 /my/path11 /my/path12 /my/path13 The file structure is that it has individual paths in each line. All I want to do is search for the existence of a ...