summaryrefslogtreecommitdiffstats
path: root/src/nserve.h
blob: b0565ef297b1b564fe5ee3f6873271555091b4ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: BSD-3-Clause */
/*
 * Copyright © 2020 rsiddharth <s@ricketyspace.net>
 */

#ifndef _nserve_h
#define _nserve_h

#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/socket.h>

#include <bstrlib.h>
#include <ncmd.h>
#include <dbg.h>

void nserve(int sock);

#endif