Newer
Older
minerva / Userland / Libraries / LibC / resolv.h
@minerva minerva on 13 Jul 282 bytes Initial commit
/*
 * 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