Codebase list virt-viewer / e5e38cf3-c678-46da-b515-35e700c1ff74/main src / glib-compat.c
e5e38cf3-c678-46da-b515-35e700c1ff74/main

Tree @e5e38cf3-c678-46da-b515-35e700c1ff74/main (Download .tar.gz)

glib-compat.c @e5e38cf3-c678-46da-b515-35e700c1ff74/mainraw · history · blame

/*
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 */
#include <config.h>

#include "glib-compat.h"

#if !GLIB_CHECK_VERSION(2,44,0)
gboolean
g_strv_contains (const gchar * const *strv,
                 const gchar         *str)
{
  g_return_val_if_fail (strv != NULL, FALSE);
  g_return_val_if_fail (str != NULL, FALSE);

  for (; *strv != NULL; strv++)
    {
      if (g_str_equal (str, *strv))
        return TRUE;
    }

  return FALSE;
}
#endif