blob: e5b1906817c160a8b0d37b9772edac3a79a0804c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  | 
#ifndef ADDGROUP_H
#define ADDGROUP_H
#include "common.h"
#include <stdbool.h>
#include <stdio.h>
__FICS_BEGIN_DECLS
int	fics_addgroup(const char *);
bool	get_group_id(const char *, int *);
bool	get_next_line_from_file(FILE *, char **); // uses 'new[]'
bool	group_exists(const char *);
int	read_the_group_permissions_file(const char *);
__FICS_END_DECLS
#endif
  |