summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/resolv.h
blob: 23f4ece30ad7a6d66f679ce76b56829feb8e13b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) 2021, the SerenityOS developers.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <sys/cdefs.h>
#include <sys/types.h>

__BEGIN_DECLS

int res_query(char const* dname, int class_, int type, unsigned char* answer, int anslen);

__END_DECLS