Function treeMagicFileReader
Reads treemagic file contents and push treemagic entries to sink.
					
			void treeMagicFileReader(OutRange)
			(
			
			  const(void)[] data,
			
			  OutRange sink
			
			)
			
			if (isOutputRange!(OutRange, TreeMagicEntry));
					
				
			Throws
TreeMagicFileException on error.
Example
auto data =
    "MIME-TreeMagic\0\n[50:x-content/video-bluray]\n" ~
    ">\"BDAV\"=directory,non-empty\n" ~
        "1>\"autorun\"=file,executable,match-case\n" ~
        "1>\"testlink\"=link\n" ~
    ">\"testfile\"=any,application/x-executable,executable\n";
void sink(TreeMagicEntry t) {
    assert(t