File: read_config.h

package info (click to toggle)
account-utils 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 836 kB
  • sloc: ansic: 8,789; xml: 1,584; sh: 77; makefile: 10
file content (14 lines) | stat: -rw-r--r-- 317 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include <libeconf.h>

struct config_t {
  uid_t *allow_get_user_record;
  uid_t *allow_verify_password;
  uid_t *allow_expired_check;
};

extern struct config_t *struct_config_free(struct config_t *cfg);
extern econf_err read_config(struct config_t *cfg);