str.h
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:0k
源码类别:

网络

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: str.h,v 1.3 1999/02/19 17:01:49 developer Exp $
  3.  */
  4. #ifndef _ZEBRA_STR_H
  5. #define _ZEBRA_STR_H
  6. #ifndef HAVE_SNPRINTF
  7. int snprintf(char *, size_t, const char *, ...);
  8. #endif
  9. #ifndef HAVE_VSNPRINTF
  10. #define vsnprintf(buf, size, format, args) vsprintf(buf, format, args)
  11. #endif
  12. #ifndef HAVE_STRLCPY
  13. size_t strlcpy(char *, const char *, size_t);
  14. #endif
  15. #ifndef HAVE_STRLCAT
  16. size_t strlcat(char *, const char *, size_t);
  17. #endif
  18. #endif