Home | History | Annotate | Download | only in unit

Lines Matching full:fopen

312      should give the same effect as fopen( "test_file.txt", "a" ).
313 Problem is fopen( "test_file.txt", "a" ) has a bit different behaviour
315 After fopen( "test_file.txt", "a" ) in this context ftell( f ) == 9 for
322 The code below is intended to demonstrate ambiguity (dependance from fopen implementation).
326 //In Windows, stlport and fopen use kernel32.CreateFile for open.
330 //On UNIX flavours, stlport and fopen use unix's open
334 //stlport uses fopen here. This case may fail this test, since the file position after
335 //fopen is implementation-dependent
342 { // for reference, to test fopen/ftell behaviour in append mode:
348 FILE* f = fopen( "test_file.txt", "a" );