File: snprintf.h

package info (click to toggle)
libezv24 0.1.1-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, squeeze
  • size: 372 kB
  • ctags: 306
  • sloc: ansic: 1,708; makefile: 134
file content (11 lines) | stat: -rw-r--r-- 182 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#ifndef __SNPRINTF_H__
#define __SNPRINTF_H__

int
#ifdef __STDC__
v24_snprintf(char *str, size_t n, char const *fmt, ...);
#else
v24_snprintf(str, n, fmt, va_alist);
#endif

#endif