annotate liboctave/wrappers/strmode-wrapper.h @ 23084:ef4d915df748

maint: Merge stable to default.
author John W. Eaton <jwe@octave.org>
date Mon, 23 Jan 2017 14:27:48 -0500
parents 3a2b891d0b33 e9a0469dedd9
children 092078913d54
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
21901
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 /*
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3 Copyright (C) 2016 John W. Eaton
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 This file is part of Octave.
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22402
diff changeset
8 under the terms of the GNU General Public License as published by
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22402
diff changeset
9 the Free Software Foundation; either version 3 of the License, or
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22402
diff changeset
10 (at your option) any later version.
21901
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22402
diff changeset
12 Octave is distributed in the hope that it will be useful, but
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22402
diff changeset
13 WITHOUT ANY WARRANTY; without even the implied warranty of
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22402
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22402
diff changeset
15 GNU General Public License for more details.
21901
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 along with Octave; see the file COPYING. If not, see
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 <http://www.gnu.org/licenses/>.
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 */
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 #if ! defined (octave_strmode_wrapper_h)
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24 #define octave_strmode_wrapper_h 1
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 #if defined __cplusplus
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 extern "C" {
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 #endif
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
29
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
30 // Expects a buffer with at least 12 characters.
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
32 extern void octave_strmode_wrapper (mode_t mode, char *buffer);
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
34 #if defined __cplusplus
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
35 }
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
36 #endif
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
37
7338be52b892 hide gnulib filemode header
John W. Eaton <jwe@octave.org>
parents:
diff changeset
38 #endif