comparison PROGRAMMING_NOTES @ 16176:83ec0b408926

Beat some older documentation into submission.
author Richard Laager <rlaager@wiktel.com>
date Sun, 15 Apr 2007 23:26:37 +0000
parents da88e2cd5c53
children e8f8d19bf3ee
comparison
equal deleted inserted replaced
16175:4493d6de6384 16176:83ec0b408926
14 14
15 - Open binary files when reading or writing with 'b' mode. 15 - Open binary files when reading or writing with 'b' mode.
16 16
17 e.g: fopen("somefile", "wb"); 17 e.g: fopen("somefile", "wb");
18 18
19 Not doing so will open files in windows using defaut translation mode. 19 Not doing so will open files in windows using default translation mode.
20 i.e. newline -> <CR><LF> 20 i.e. newline -> <CR><LF>
21 21
22 Paths 22 Paths
23 ----- 23 -----
24 24