-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright (c) 2024, SUSE LLC | ||
* | ||
* This program is licensed under the BSD license, read LICENSE.BSD | ||
* for further information | ||
*/ | ||
|
||
/* | ||
* apk.h | ||
* | ||
*/ | ||
|
||
#ifndef LIBSOLV_APK_H | ||
#define LIBSOLV_APK_H | ||
|
||
#include "pooltypes.h" | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
int solv_vercmp_apk(const char *evr1, const char *evr1e, const char *evr2, const char *evr2e); | ||
int pool_evrcmp_apk(const Pool *pool, const char *evr1, const char *evr2, int mode); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif /* LIBSOLV_APK_H */ | ||
|