Blame parse.h

Packit db3073
/* 
Packit db3073
 * Copyright (C) 2001, 2002 Red Hat Inc.
Packit db3073
 * 
Packit db3073
 * This program is free software; you can redistribute it and/or
Packit db3073
 * modify it under the terms of the GNU General Public License as
Packit db3073
 * published by the Free Software Foundation; either version 2 of the
Packit db3073
 * License, or (at your option) any later version.
Packit db3073
 *
Packit db3073
 * This program is distributed in the hope that it will be useful, but
Packit db3073
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit db3073
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit db3073
 * General Public License for more details.
Packit db3073
 * 
Packit db3073
 * You should have received a copy of the GNU General Public License
Packit db3073
 * along with this program; if not, write to the Free Software
Packit db3073
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
Packit db3073
 * 02111-1307, USA.
Packit db3073
 */
Packit db3073
Packit db3073
#ifndef PKG_CONFIG_PARSE_H
Packit db3073
#define PKG_CONFIG_PARSE_H
Packit db3073
Packit db3073
#include "pkg.h"
Packit db3073
Packit db3073
Package *parse_package_file (const char *path, gboolean ignore_requires,
Packit db3073
			     gboolean ignore_private_libs,
Packit db3073
			     gboolean ignore_requires_private);
Packit db3073
Packit db3073
GList   *parse_module_list (Package *pkg, const char *str, const char *path);
Packit db3073
Packit db3073
#endif
Packit db3073
Packit db3073
Packit db3073