1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:17:36 +00:00

LibC: Add INET_ADDRSTRLEN define

This commit is contained in:
Robin Burchell 2019-05-16 09:50:13 +02:00 committed by Andreas Kling
parent 619489da62
commit cf41b0ef17

View file

@ -5,6 +5,8 @@
__BEGIN_DECLS
#define INET_ADDRSTRLEN 16
const char* inet_ntop(int af, const void* src, char* dst, socklen_t);
int inet_pton(int af, const char* src, void* dst);