17 lines
176 B
C
17 lines
176 B
C
|
|
#ifndef _PING_H_
|
||
|
|
#define _PING_H_
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
extern int random_data_flag;
|
||
|
|
|
||
|
|
extern int ping(char *ip_dest);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|