File: libifupdown.h

package info (click to toggle)
ifupdown-ng 0.12.1-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 964 kB
  • sloc: ansic: 3,572; sh: 980; makefile: 233
file content (38 lines) | stat: -rw-r--r-- 1,207 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
 * libifupdown/libifupdown.h
 * Purpose: main header file for libifupdown
 *
 * Copyright (c) 2020 Ariadne Conill <ariadne@dereferenced.org>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * This software is provided 'as is' and without any warranty, express or
 * implied.  In no event shall the authors be liable for any damages arising
 * from the use of this software.
 */

#ifndef LIBIFUPDOWN_LIBIFUPDOWN_H__GUARD
#define LIBIFUPDOWN_LIBIFUPDOWN_H__GUARD

#include "libifupdown/list.h"
#include "libifupdown/dict.h"
#include "libifupdown/interface.h"
#include "libifupdown/interface-file.h"
#include "libifupdown/fgetline.h"
#include "libifupdown/version.h"
#include "libifupdown/state.h"
#include "libifupdown/environment.h"
#include "libifupdown/execute.h"
#include "libifupdown/lifecycle.h"
#include "libifupdown/tokenize.h"
#include "libifupdown/config-file.h"
#include "libifupdown/config-parser.h"
#include "libifupdown/compat.h"

#ifndef ARRAY_SIZE
# define ARRAY_SIZE(x)   (sizeof(x) / sizeof(*x))
#endif

#endif