Imported Upstream version 0.7.27
[platform/upstream/libsolv.git] / src / conda.h
1 /*
2  * Copyright (c) 2019, SUSE LLC
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7
8 /*
9  * conda.h
10  *
11  */
12
13 #ifndef LIBSOLV_CONDA_H
14 #define LIBSOLV_CONDA_H
15
16 #include "pooltypes.h"
17 #include "solvable.h"
18
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22
23 int pool_evrcmp_conda(const Pool *pool, const char *evr1, const char *evr2, int mode);
24 int solvable_conda_matchversion(Solvable *s, const char *version);
25 Id pool_addrelproviders_conda(Pool *pool, Id name, Id evr, Queue *plist);
26 Id pool_conda_matchspec(Pool *pool, const char *name);
27
28 #ifdef __cplusplus
29 }
30 #endif
31
32 #endif /* LIBSOLV_CONDA_H */
33