resolv.h 259 B

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