Files
.github
CMakeModules
dist
externals
SDL
Vulkan-Headers
cmake-modules
cubeb
discord-rpc
dynarmic
ffmpeg
find-modules
getopt
glad
httplib
inih
libressl
crypto
include
compat
arpa
machine
netinet
sys
dirent.h
dirent_msvc.h
err.h
fcntl.h
limits.h
netdb.h
poll.h
pthread.h
readpassphrase.h
resolv.h
stdio.h
stdlib.h
string.h
syslog.h
time.h
unistd.h
win32netcompat.h
openssl
CMakeLists.txt
pqueue.h
tls.h
ssl
tls
.gitignore
CMakeLists.txt
COPYING
ChangeLog
FindLibreSSL.cmake
INSTALL
README.md
README.windows
VERSION
cmake_export_symbol.cmake
ltmain.sh
tap-driver.sh
test-driver
libusb
libzip
mbedtls
microprofile
opus
sirit
soundtouch
xbyak
CMakeLists.txt
patches
src
CMakeLists.txt
LICENSE
README.md
license.txt
yuzu/externals/libressl/include/compat/resolv.h

25 lines
422 B
C
Raw Normal View History

2020-12-28 15:15:37 +00:00
/*
* Public domain
* resolv.h compatibility shim
*/
#ifndef LIBCRYPTOCOMPAT_RESOLV_H
#define LIBCRYPTOCOMPAT_RESOLV_H
#ifdef _MSC_VER
#if _MSC_VER >= 1900
#include <../ucrt/resolv.h>
#else
#include <../include/resolv.h>
#endif
#else
#include_next <resolv.h>
#endif
#ifndef HAVE_B64_NTOP
int b64_ntop(unsigned char const *, size_t, char *, size_t);
int b64_pton(char const *, unsigned char *, size_t);
#endif
#endif