paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame^] | 1 | /* |
| 2 | * $Id: str.h,v 1.1 2002/12/13 20:15:29 paul Exp $ |
| 3 | */ |
| 4 | |
| 5 | #ifndef _ZEBRA_STR_H |
| 6 | #define _ZEBRA_STR_H |
| 7 | |
| 8 | #ifndef HAVE_SNPRINTF |
| 9 | int snprintf(char *, size_t, const char *, ...); |
| 10 | #endif |
| 11 | |
| 12 | #ifndef HAVE_VSNPRINTF |
| 13 | #define vsnprintf(buf, size, format, args) vsprintf(buf, format, args) |
| 14 | #endif |
| 15 | |
| 16 | #ifndef HAVE_STRLCPY |
| 17 | size_t strlcpy(char *, const char *, size_t); |
| 18 | #endif |
| 19 | |
| 20 | #ifndef HAVE_STRLCAT |
| 21 | size_t strlcat(char *, const char *, size_t); |
| 22 | #endif |
| 23 | |
| 24 | #endif |