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

#pragma once

#include <sys/types.h>

__BEGIN_DECLS

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

__END_DECLS