1313024Sglebius/*
2313024Sglebius * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
3313024Sglebius * Copyright (c) 1996,1999 by Internet Software Consortium.
4313024Sglebius *
5313024Sglebius * Permission to use, copy, modify, and distribute this software for any
6313024Sglebius * purpose with or without fee is hereby granted, provided that the above
7313024Sglebius * copyright notice and this permission notice appear in all copies.
8313024Sglebius *
9313024Sglebius * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
10313024Sglebius * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11313024Sglebius * MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR
12313024Sglebius * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13313024Sglebius * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14313024Sglebius * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
15313024Sglebius * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16313024Sglebius */
17313024Sglebius
18313024Sglebius/* Text string to address translation routines. */
19313024Sglebius
20313024Sglebiusint	strtoaddr(const char *src, void *dst);
21313024Sglebiusint	strtoaddr6(const char *src, void *dst);
22313024Sglebius
23313024Sglebius
24