File: inet_pton.h

package info (click to toggle)
net-snmp 5.9.4%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 38,720 kB
  • sloc: ansic: 282,878; perl: 17,704; sh: 12,151; makefile: 2,711; python: 734; xml: 663; pascal: 62; sql: 47
file content (12 lines) | stat: -rw-r--r-- 292 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _INET_PTON_H
#define _INET_PTON_H

#include <net-snmp/net-snmp-config.h>
#include <net-snmp/types.h>

#ifndef HAVE_INET_PTON
int             netsnmp_inet_pton(int af, const char *src, void *dst);
#define inet_pton netsnmp_inet_pton
#endif /*HAVE_INET_PTON */

#endif /*_INET_PTON_H*/