Bubble android client. Fork of https://git.zx2c4.com/wireguard-android/
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

12345678910111213141516
  1. /* SPDX-License-Identifier: BSD
  2. *
  3. * Copyright © 2017-2019 WireGuard LLC. All Rights Reserved.
  4. *
  5. */
  6. #if defined(__ANDROID_API__) && __ANDROID_API__ < 18
  7. #include <stdio.h>
  8. ssize_t getdelim(char **buf, size_t *bufsiz, int delimiter, FILE *fp);
  9. ssize_t getline(char **buf, size_t *bufsiz, FILE *fp);
  10. #endif
  11. #if defined(__ANDROID_API__) && __ANDROID_API__ < 24
  12. char *strchrnul(const char *s, int c);
  13. #endif