1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 01:51:03 +09:00
ladybird/Userland/Libraries/LibC/resolv.h
2022-04-01 21:24:45 +01:00

15 lines
259 B
C

/*
* Copyright (c) 2021, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <sys/types.h>
__BEGIN_DECLS
int res_query(char const* dname, int class_, int type, unsigned char* answer, int anslen);
__END_DECLS