Gestern, 14:48
ist mir noch eingefallen - keine Ahnung ob relevant
ein fopen unter Windows/MSVC ist nicht automatisch im Binärmodus wie unter Linux - da muss noch ein "b" mit rein - sonst hast du Newline spässe
also aus einem Linux fopen("blub","r") muss ein Windows fopen("blub","rb") werden wenn es sich um eine Binärdatei handelt - das "b" stört Linux aber nicht
ein fopen unter Windows/MSVC ist nicht automatisch im Binärmodus wie unter Linux - da muss noch ein "b" mit rein - sonst hast du Newline spässe

also aus einem Linux fopen("blub","r") muss ein Windows fopen("blub","rb") werden wenn es sich um eine Binärdatei handelt - das "b" stört Linux aber nicht


