mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-22 12:31:32 +00:00
14 lines
540 B
C
14 lines
540 B
C
/* $Id: addr_is_reserved.h,v 1.1 2020/09/28 21:11:19 nanard Exp $ */
|
|
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
|
* Project: miniupnp
|
|
* http://miniupnp.free.fr/ or https://miniupnp.tuxfamily.org/
|
|
* Author: Thomas Bernard
|
|
* Copyright (c) 2005-2020 Thomas Bernard
|
|
* This software is subjects to the conditions detailed
|
|
* in the LICENCE file provided within this distribution */
|
|
#ifndef ADDR_IS_RESERVED_H_INCLUDED
|
|
#define ADDR_IS_RESERVED_H_INCLUDED
|
|
|
|
int addr_is_reserved(const char * addr_str);
|
|
|
|
#endif /* ADDR_IS_RESERVED_H_INCLUDED */
|