blob: a9cb7d118dcdf90f6487123258d95d32894b2a5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
/***
This file is part of systemd.
Copyright 2014 Lennart Poettering
***/
const char *arphrd_to_name(int id);
int arphrd_from_name(const char *name);
int arphrd_max(void);
|