aboutsummaryrefslogtreecommitdiff
path: root/src/group.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/group.c')
-rw-r--r--src/group.c54
1 files changed, 40 insertions, 14 deletions
diff --git a/src/group.c b/src/group.c
index cd3aba4..ca38329 100644
--- a/src/group.c
+++ b/src/group.c
@@ -46,22 +46,30 @@ static void ApplyGroup(const GroupType *gp, ClientNode *np);
/****************************************************************************
****************************************************************************/
-void InitializeGroups() {
+void
+InitializeGroups()
+{
}
/****************************************************************************
****************************************************************************/
-void StartupGroups() {
+void
+StartupGroups()
+{
}
/****************************************************************************
****************************************************************************/
-void ShutdownGroups() {
+void
+ShutdownGroups()
+{
}
/****************************************************************************
****************************************************************************/
-void DestroyGroups() {
+void
+DestroyGroups()
+{
GroupType *gp;
@@ -77,7 +85,9 @@ void DestroyGroups() {
/****************************************************************************
****************************************************************************/
-void ReleasePatternList(PatternListType *lp) {
+void
+ReleasePatternList(PatternListType *lp)
+{
PatternListType *tp;
@@ -92,7 +102,9 @@ void ReleasePatternList(PatternListType *lp) {
/****************************************************************************
****************************************************************************/
-void ReleaseOptionList(OptionListType *lp) {
+void
+ReleaseOptionList(OptionListType *lp)
+{
OptionListType *tp;
@@ -123,7 +135,9 @@ GroupType *CreateGroup() {
/****************************************************************************
****************************************************************************/
-void AddGroupClass(GroupType *gp, const char *pattern) {
+void
+AddGroupClass(GroupType *gp, const char *pattern)
+{
Assert(gp);
@@ -137,7 +151,9 @@ void AddGroupClass(GroupType *gp, const char *pattern) {
/****************************************************************************
****************************************************************************/
-void AddGroupName(GroupType *gp, const char *pattern) {
+void
+AddGroupName(GroupType *gp, const char *pattern)
+{
Assert(gp);
@@ -151,7 +167,9 @@ void AddGroupName(GroupType *gp, const char *pattern) {
/****************************************************************************
****************************************************************************/
-void AddPattern(PatternListType **lp, const char *pattern, MatchType match) {
+void
+AddPattern(PatternListType **lp, const char *pattern, MatchType match)
+{
PatternListType *tp;
@@ -169,7 +187,9 @@ void AddPattern(PatternListType **lp, const char *pattern, MatchType match) {
/****************************************************************************
****************************************************************************/
-void AddGroupOption(GroupType *gp, OptionType option) {
+void
+AddGroupOption(GroupType *gp, OptionType option)
+{
OptionListType *lp;
@@ -183,8 +203,10 @@ void AddGroupOption(GroupType *gp, OptionType option) {
/****************************************************************************
****************************************************************************/
-void AddGroupOptionValue(GroupType *gp, OptionType option,
- const char *value) {
+void
+AddGroupOptionValue(GroupType *gp, OptionType option,
+ const char *value)
+{
OptionListType *lp;
@@ -200,7 +222,9 @@ void AddGroupOptionValue(GroupType *gp, OptionType option,
/****************************************************************************
****************************************************************************/
-void ApplyGroups(ClientNode *np) {
+void
+ApplyGroups(ClientNode *np)
+{
PatternListType *lp;
GroupType *gp;
@@ -229,7 +253,9 @@ void ApplyGroups(ClientNode *np) {
/****************************************************************************
****************************************************************************/
-void ApplyGroup(const GroupType *gp, ClientNode *np) {
+void
+ApplyGroup(const GroupType *gp, ClientNode *np)
+{
OptionListType *lp;
unsigned int temp;