File: context.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 (11 lines) | stat: -rw-r--r-- 179 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include <systemd/sd-event.h>
#include "read_config.h"

struct context_t {
  struct config_t cfg;
  sd_event *loop;
};