mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 08:56:15 +09:00
11 lines
230 B
C
11 lines
230 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include <inttypes.h>
|
|
#include <stddef.h>
|
|
|
|
const char *arphrd_to_name(int id);
|
|
int arphrd_from_name(const char *name);
|
|
|
|
size_t arphrd_to_hw_addr_len(uint16_t arphrd);
|