projects
/
platform
/
upstream
/
libsolv.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
I need C++ here too.
[platform/upstream/libsolv.git]
/
src
/
evr.h
1
/*
2
* evr.h
3
*
4
*/
5
6
#ifndef EVR_H
7
#define EVR_H
8
9
#ifdef __cplusplus
10
extern "C" {
11
#endif
12
13
#include "pooltypes.h"
14
15
extern int vercmp( const char *s1, const char *q1, const char *s2, const char *q2 );
16
extern int evrcmp( Pool *pool, Id evr1id, Id evr2id );
17
18
#ifdef __cplusplus
19
}
20
#endif
21
22
#endif /* EVR_H */