blob: 5881027ae0a9cc99b17263c8496a36a4ad87edaa (
plain)
1
2
3
4
5
6
7
8
|
#pragma once
/* SPDX-License-Identifier: Unlicense */
#include "proto.h"
int ReceiveFrame(int fd, struct frame *frame);
int SendFrame(int const fd, struct frame const *const frame);
|