ladybird/Userland/Libraries/LibC/resolv.h

17 lines
282 B
C
Raw Normal View History

2021-08-11 17:33:26 +00:00
/*
* Copyright (c) 2021, the SerenityOS developers.
2021-08-11 17:33:26 +00:00
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <sys/cdefs.h>
2021-08-11 17:33:26 +00:00
#include <sys/types.h>
__BEGIN_DECLS
2022-04-01 17:58:27 +00:00
int res_query(char const* dname, int class_, int type, unsigned char* answer, int anslen);
2021-08-11 17:33:26 +00:00
__END_DECLS