view liboctave/wrappers/canonicalize-file-name-wrapper.h @ 33166:7274354d68bf

for consistent coding style, use #if defined (X) instead of if defined X Affected files: oct-password.cc, oct-atomic.h, areadlink-wrapper.h, async-system-wrapper.h, base64-wrappers.h, canonicalize-file-name-wrapper.h, dirent-wrappers.h, fcntl-wrappers.h, filepos-wrappers.h, fpucw-wrappers.h, gen-tempname-wrapper.h, getopt-wrapper.h, glob-wrappers.h, hash-wrappers.h, iconv-wrappers.h, intprops-wrappers.h, localcharset-wrapper.h, math-wrappers.h, mkostemp-wrapper.h, mkostemps-wrapper.h, nanosleep-wrapper.h, nproc-wrapper.h, octave-popen2.h, putenv-wrapper.h, pwd-wrappers.h, set-program-name-wrapper.h, signal-wrappers.h, stat-wrappers.h, strdup-wrapper.h, strftime-wrapper.h, strmode-wrapper.h, strptime-wrapper.h, time-wrappers.h, uname-wrapper.h, unicase-wrappers.h, uniconv-wrappers.h, unictype-wrappers.h, unistd-wrappers.h, unistr-wrappers.h, unsetenv-wrapper.h, vasprintf-wrapper.h, wait-for-input.h, and wait-wrappers.h.
author John W. Eaton <jwe@octave.org>
date Thu, 07 Mar 2024 13:47:50 -0500
parents 2e484f9f1f18
children
line wrap: on
line source

////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2016-2024 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// This file is part of Octave.
//
// Octave is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Octave is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Octave; see the file COPYING.  If not, see
// <https://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////

#if ! defined (octave_canonicalize_file_name_wrapper_h)
#define octave_canonicalize_file_name_wrapper_h 1

#if defined (__cplusplus)
extern "C" {
#endif

extern OCTAVE_API char *
octave_canonicalize_file_name_wrapper (const char *name);

#if defined (__cplusplus)
}
#endif

#endif