aboutsummaryrefslogtreecommitdiff
path: root/src/io.c
blob: 902124a28befc9ab262a056c422a4195a21b1cd3 (plain)
1
2
3
4
5
6
7
8
#include "io.h"

void io_init(p_io io, p_send send, p_recv recv, void *ctx)
{
    io->send = send;
    io->recv = recv;
    io->ctx = ctx;
}