diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2019-09-10 15:38:51 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2019-09-10 15:38:51 +0900 |
commit | f078975d65d0cace665590f3cf60025e6f2c7a0a (patch) | |
tree | d5c4e22f5738c33a4b49ec6517e814297b015393 /src/conda.h | |
parent | d4334b3ee7ce4f5c736d3bda979388a87ba7aef3 (diff) | |
download | libsolv-f078975d65d0cace665590f3cf60025e6f2c7a0a.tar.gz libsolv-f078975d65d0cace665590f3cf60025e6f2c7a0a.tar.bz2 libsolv-f078975d65d0cace665590f3cf60025e6f2c7a0a.zip |
Imported Upstream version 0.7.4upstream/0.7.4
Diffstat (limited to 'src/conda.h')
-rw-r--r-- | src/conda.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/conda.h b/src/conda.h new file mode 100644 index 0000000..7233f17 --- /dev/null +++ b/src/conda.h @@ -0,0 +1,20 @@ +/* + * Copyright (c) 2019, SUSE LLC + * + * This program is licensed under the BSD license, read LICENSE.BSD + * for further information + */ + +/* + * conda.h + * + */ + +#ifndef LIBSOLV_CONDA_H +#define LIBSOLV_CONDA_H + +int pool_evrcmp_conda(const Pool *pool, const char *evr1, const char *evr2, int mode); +int solvable_conda_matchversion(Solvable *s, const char *version); + +#endif /* LIBSOLV_CONDA_H */ + |