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