inet.h 590 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright (c) 2019 Linaro Limited
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_POSIX_ARPA_INET_H_
  7. #define ZEPHYR_INCLUDE_POSIX_ARPA_INET_H_
  8. #include <net/socket.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. static inline char *inet_ntop(sa_family_t family, const void *src, char *dst,
  13. size_t size)
  14. {
  15. return zsock_inet_ntop(family, src, dst, size);
  16. }
  17. static inline int inet_pton(sa_family_t family, const char *src, void *dst)
  18. {
  19. return zsock_inet_pton(family, src, dst);
  20. }
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24. #endif /* ZEPHYR_INCLUDE_POSIX_ARPA_INET_H_ */