mirror of
https://github.com/FRRouting/frr.git
synced 2025-04-30 13:37:17 +02:00

Since we have autoconf results from a wide swath of target platforms, we can go remove checks that have the same result on all systems. This also removes several "fallback" implementations of functions that, at some point in the history, weren't available on all target platforms. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
18 lines
294 B
C
18 lines
294 B
C
/*
|
|
* $Id: str.h,v 1.4 2005/09/19 09:53:21 hasso Exp $
|
|
*/
|
|
|
|
#ifndef _ZEBRA_STR_H
|
|
#define _ZEBRA_STR_H
|
|
|
|
#ifndef HAVE_STRLCPY
|
|
extern size_t strlcpy(char *, const char *, size_t);
|
|
#endif
|
|
|
|
#ifndef HAVE_STRLCAT
|
|
extern size_t strlcat(char *, const char *, size_t);
|
|
#endif
|
|
|
|
#endif /* _ZEBRA_STR_H */
|
|
|