frr/lib/str.h

18 lines
294 B
C
Raw Normal View History

2002-12-13 21:15:29 +01:00
/*
* $Id: str.h,v 1.4 2005/09/19 09:53:21 hasso Exp $
2002-12-13 21:15:29 +01:00
*/
#ifndef _ZEBRA_STR_H
#define _ZEBRA_STR_H
#ifndef HAVE_STRLCPY
extern size_t strlcpy(char *, const char *, size_t);
2002-12-13 21:15:29 +01:00
#endif
#ifndef HAVE_STRLCAT
extern size_t strlcat(char *, const char *, size_t);
2002-12-13 21:15:29 +01:00
#endif
#endif /* _ZEBRA_STR_H */