annotate examples/helloworld.cc @ 16590:2d968b7830d6
handle A, R, and W fopen modes correctly (bug #38851)
* file-io.cc (normalize_fopen_mode): New function. Handle 'A'. Also
handle 'b' and 't' suffixes here. Use Octave:fopen-mode warning id.
(fopen_mode_to_ios_mode): Only convert from mode string to ios mode.
(do_stream_open): Call normalize_fopen_mode before calling
fopen_mode_to_ios_mode. Don't process mode string directly.
* io.tst: Update test for fopen modes.
author |
John W. Eaton <jwe@octave.org> |
date |
Mon, 29 Apr 2013 13:46:55 -0400 |
parents |
db1f49eaba6b |
children |
be41c30bcb44 |
rev |
line source |
6572
|
1 #include <octave/oct.h> |
|
2 |
|
3 DEFUN_DLD (helloworld, args, nargout, |
|
4 "Hello World Help String") |
|
5 { |
|
6 int nargin = args.length (); |
12174
|
7 octave_stdout << "Hello World has " << nargin |
6572
|
8 << " input arguments and " |
|
9 << nargout << " output arguments.\n"; |
|
10 return octave_value_list (); |
|
11 } |