view liboctave/wrappers/strcase-wrappers.c @ 30587:5d379d2ad903

strcase-wrappers: Add wrappers for strcasecmp and strncasecmp. * liboctave/wrappers/strcase-wrappers.h, liboctave/wrappers/strcase-wrappers.cc: Add new wrapper files. * liboctave/wrappers/module.mk: Add new files to build system. * liboctave/util/lo-cutils.h, liboctave/util/lo-cutils.c: Remove functions that have been moved to dedicated header files. * bootstrap.conf: Explicitly add strcase module. * libinterp/corefcn/oct-stream.cc, libinterp/corefcn/utils.cc: Include new header. See: https://octave.discourse.group/t/1998
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 31 Dec 2021 18:44:26 +0100
parents
children 597f3ee61a48
line wrap: on
line source

////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2022 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 (HAVE_CONFIG_H)
#  include "config.h"
#endif

#include <strings.h>

#include "strcase-wrappers.h"

OCTAVE_API int
octave_strcasecmp (const char *s1, const char *s2)
{
  return strcasecmp (s1, s2);
}

OCTAVE_API int
octave_strncasecmp (const char *s1, const char *s2, size_t n)
{
  return strncasecmp (s1, s2, n);
}