-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportageutils.h
33 lines (27 loc) · 1 KB
/
portageutils.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
* portage utilities
* Copyright © 2007-2011 Andrew Savchenko
*
* This file is part of symlookup.
*
* symlookup is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation
*
* symlookup 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 version 3 for more details.
*
* You should have received a copy of the GNU General Public License version 3
* along with symlookup. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef SL_PORTAGEUTILS_H
#define SL_PORTAGEUTILS_H
#ifdef HAVE_PORTAGE
#include "symlookup.h"
extern struct str_t *ebuild_arr;
/* builds hash table for files found and searches portage db for them */
void find_ebuilds(const struct str_t *const file);
#endif //HAVE_PORTAGE
#endif /* SL_PORTAGEUTILS_H */