diff options
author | Allan McRae <allan@archlinux.org> | 2011-06-29 07:46:49 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2011-06-29 07:46:49 +0200 |
commit | f1bb56cebfda9b11ea02754d325ff659014e2caa (patch) | |
tree | 289b4d9648077a4b2245728e11a8e9469b0957b5 /lib/libalpm/alpm.h | |
parent | 3bb469d558b5ad778f87a1427a45ec4190ba4155 (diff) | |
download | pacman-f1bb56cebfda9b11ea02754d325ff659014e2caa.tar.gz pacman-f1bb56cebfda9b11ea02754d325ff659014e2caa.tar.xz |
Rename public functions with grp in their name
Using grp instead of group is a small saving at the cost of clarity.
Rename the following functions:
alpm_option_get_ignoregrps -> alpm_option_get_ignoregroups
alpm_option_add_ignoregrp -> alpm_option_add_ignoregroup
alpm_option_set_ignoregrps -> alpm_option_set_ignoregroups
alpm_option_remove_ignoregrp -> alpm_option_remove_ignoregroup
alpm_db_readgrp -> alpm_db_readgroup
alpm_db_get_grpcache -> alpm_db_get_groupcache
alpm_find_grp_pkgs -> alpm_find_group_pkgs
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm/alpm.h')
-rw-r--r-- | lib/libalpm/alpm.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index 54a9ba42..33707dd3 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -311,10 +311,10 @@ int alpm_option_remove_ignorepkg(alpm_handle_t *handle, const char *pkg); * should be ignored by a sysupgrade. * @{ */ -alpm_list_t *alpm_option_get_ignoregrps(alpm_handle_t *handle); -int alpm_option_add_ignoregrp(alpm_handle_t *handle, const char *grp); -int alpm_option_set_ignoregrps(alpm_handle_t *handle, alpm_list_t *ignoregrps); -int alpm_option_remove_ignoregrp(alpm_handle_t *handle, const char *grp); +alpm_list_t *alpm_option_get_ignoregroups(alpm_handle_t *handle); +int alpm_option_add_ignoregroup(alpm_handle_t *handle, const char *grp); +int alpm_option_set_ignoregroups(alpm_handle_t *handle, alpm_list_t *ignoregrps); +int alpm_option_remove_ignoregroup(alpm_handle_t *handle, const char *grp); /** @} */ /** Returns the targeted architecture. */ @@ -411,13 +411,13 @@ alpm_list_t *alpm_db_get_pkgcache(alpm_db_t *db); * @param name of the group * @return the groups entry on success, NULL on error */ -alpm_group_t *alpm_db_readgrp(alpm_db_t *db, const char *name); +alpm_group_t *alpm_db_readgroup(alpm_db_t *db, const char *name); /** Get the group cache of a package database. * @param db pointer to the package database to get the group from * @return the list of groups on success, NULL on error */ -alpm_list_t *alpm_db_get_grpcache(alpm_db_t *db); +alpm_list_t *alpm_db_get_groupcache(alpm_db_t *db); /** Searches a database with regular expressions. * @param db pointer to the package database to search in @@ -700,7 +700,7 @@ int alpm_db_check_pgp_signature(alpm_db_t *db); * Groups */ -alpm_list_t *alpm_find_grp_pkgs(alpm_list_t *dbs, const char *name); +alpm_list_t *alpm_find_group_pkgs(alpm_list_t *dbs, const char *name); /* * Sync |