mirror of
https://github.com/EnergyMech/energymech.git
synced 2025-12-17 23:47:14 +00:00
9 lines
144 B
C
9 lines
144 B
C
#include <netinet/in.h>
|
|
#include <arpa/inet.h>
|
|
int main(int argc, char **argv)
|
|
{
|
|
struct in_addr ia;
|
|
return(inet_aton("0.0.0.0",&ia));
|
|
}
|
|
|