aboutsummaryrefslogtreecommitdiff
path: root/libs/libnet/ip.h
blob: e06aba235047066235ff80b26e21d3d26b5cc2f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// MIT License, Copyright (c) 2020 Marvin Borner
// Most net/ip handlers are in the kernel space
// This is a userspace wrapper for some things

#ifndef IP_H
#define IP_H

#include <def.h>

int ip_pton(const char *src, u32 *dst);

#endif