1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Fix for funcs on INET/CIDR.

This commit is contained in:
Bruce Momjian
1998-10-22 04:58:11 +00:00
parent 2ba4ee74aa
commit 3fe6a77f91
3 changed files with 47 additions and 9 deletions

View File

@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: builtins.h,v 1.64 1998/10/22 00:35:28 momjian Exp $
* $Id: builtins.h,v 1.65 1998/10/22 04:58:11 momjian Exp $
*
* NOTES
* This should normally only be included by fmgr.h.
@ -542,6 +542,11 @@ int4 inet_netmasklen(inet * addr);
text *inet_broadcast(inet * addr);
text *inet_host(inet * addr);
text *cidr_netmask(inet * addr);
int4 cidr_netmasklen(inet * addr);
text *cidr_broadcast(inet * addr);
text *cidr_host(inet * addr);
/* mac.c */
macaddr *macaddr_in(char *str);