diff options
Diffstat (limited to 'lib/libalpm/deps.c')
-rw-r--r-- | lib/libalpm/deps.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/libalpm/deps.c b/lib/libalpm/deps.c index 524136bd..794fbdbc 100644 --- a/lib/libalpm/deps.c +++ b/lib/libalpm/deps.c @@ -766,4 +766,16 @@ const char SYMEXPORT *alpm_dep_get_version(pmdepmissing_t *miss) return miss->depend.version; } + +const char SYMEXPORT *alpm_depend_get_name(pmdepend_t *dep) +{ + ALPM_LOG_FUNC; + + /* Sanity checks */ + ASSERT(handle != NULL, return(NULL)); + ASSERT(dep != NULL, return(NULL)); + + return dep->name; +} + /* vim: set ts=2 sw=2 noet: */ |