summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/group.h
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2011-06-29 07:52:33 +0200
committerAllan McRae <allan@archlinux.org>2011-06-29 07:52:33 +0200
commitb1894ccf062059972d39fa855ee7941b666c5db0 (patch)
treeff2da312f683393961487b741ea02ea89b0a0c13 /lib/libalpm/group.h
parentf1bb56cebfda9b11ea02754d325ff659014e2caa (diff)
downloadpacman-b1894ccf062059972d39fa855ee7941b666c5db0.tar.gz
pacman-b1894ccf062059972d39fa855ee7941b666c5db0.tar.xz
Rename internal functions with grp in their name
The following function renames take place for the same reasoning as the previous commit: _alpm_grp_new -> _alpm_group_new _alpm_grp_free -> _alpm_group_free _alpm_db_free_grpcache -> _alpm_db_free_groupcache _alpm_db_get_grpfromcache -> _alpm_db_get_groupfromcache Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm/group.h')
-rw-r--r--lib/libalpm/group.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libalpm/group.h b/lib/libalpm/group.h
index ad38c768..078c9af7 100644
--- a/lib/libalpm/group.h
+++ b/lib/libalpm/group.h
@@ -22,8 +22,8 @@
#include "alpm.h"
-alpm_group_t *_alpm_grp_new(const char *name);
-void _alpm_grp_free(alpm_group_t *grp);
+alpm_group_t *_alpm_group_new(const char *name);
+void _alpm_group_free(alpm_group_t *grp);
#endif /* _ALPM_GROUP_H */