File: snprintf.h

package info (click to toggle)
libhsync 0.5.7-1.2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,060 kB
  • ctags: 543
  • sloc: sh: 7,944; ansic: 5,413; makefile: 154
file content (8 lines) | stat: -rw-r--r-- 250 bytes parent folder | download
1
2
3
4
5
6
7
8
/* $Id: snprintf.h,v 1.2 2000/08/08 09:20:34 mbp Exp $ */

#ifndef HAVE_SNPRINTF
int snprintf (char *str, size_t count, const char *fmt, ...);
#endif
#ifndef HAVE_VSPRINTF
int vsnprintf (char *str, size_t count, const char *fmt, va_list arg);
#endif