23 lines
382 B
C
23 lines
382 B
C
|
#ifndef IP_H
|
||
|
#define IP_H
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <fcntl.h>
|
||
|
#include <string.h>
|
||
|
#include <time.h>
|
||
|
#include <signal.h>
|
||
|
#include <sys/wait.h>
|
||
|
#include <curl/curl.h>
|
||
|
#include <sys/types.h>
|
||
|
#include <arpa/inet.h>
|
||
|
#include <assert.h>
|
||
|
#include <limits.h>
|
||
|
#include <stdarg.h>
|
||
|
|
||
|
extern char *GET_PUBLIC_IP(char *URL);
|
||
|
|
||
|
#endif
|