diff options
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 */ + |