Is there a function in C which can read dual delimiters,
there is strtok which works using a single delimiter.. Is
i need to decode a file as such
123#!45!2#!678#!666#!45!6#!
in the above case #! is the delimter, if i use strtok and use(#! as delimiter) 45!2 in the above data will get tokenized too, anybody has a solution?