Blame glib/guuid.h

Packit ae235b
/* guuid.h - UUID functions
Packit ae235b
 *
Packit ae235b
 * Copyright (C) 2013-2015, 2017 Red Hat, Inc.
Packit ae235b
 *
Packit ae235b
 * This library is free software; you can redistribute it and/or modify
Packit ae235b
 * it under the terms of the GNU Lesser General Public License as
Packit ae235b
 * published by the Free Software Foundation; either version 2.1 of the
Packit ae235b
 * licence, or (at your option) any later version.
Packit ae235b
 *
Packit ae235b
 * This is distributed in the hope that it will be useful, but WITHOUT
Packit ae235b
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
Packit ae235b
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
Packit ae235b
 * License for more details.
Packit ae235b
 *
Packit ae235b
 * You should have received a copy of the GNU Lesser General Public
Packit ae235b
 * License along with this library; if not, write to the Free Software
Packit ae235b
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301
Packit ae235b
 * USA.
Packit ae235b
 *
Packit ae235b
 * Authors: Marc-André Lureau <marcandre.lureau@redhat.com>
Packit ae235b
 */
Packit ae235b
Packit ae235b
#ifndef __G_UUID_H__
Packit ae235b
#define __G_UUID_H__
Packit ae235b
Packit ae235b
#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
Packit ae235b
#error "Only <glib.h> can be included directly."
Packit ae235b
#endif
Packit ae235b
Packit ae235b
#include <glib/gtypes.h>
Packit ae235b
Packit ae235b
G_BEGIN_DECLS
Packit ae235b
Packit ae235b
GLIB_AVAILABLE_IN_2_52
Packit ae235b
gboolean      g_uuid_string_is_valid       (const gchar   *str);
Packit ae235b
Packit ae235b
GLIB_AVAILABLE_IN_2_52
Packit ae235b
gchar *       g_uuid_string_random         (void);
Packit ae235b
Packit ae235b
G_END_DECLS
Packit ae235b
Packit ae235b
#endif  /* __G_UUID_H__ */