File: printf.h

package info (click to toggle)
libarr 0.1-49
  • links: PTS
  • area: main
  • in suites: woody
  • size: 376 kB
  • ctags: 400
  • sloc: ansic: 2,106; makefile: 140; sh: 13
file content (20 lines) | stat: -rw-r--r-- 471 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * $Id: printf.h,v 1.1 2000/08/23 00:55:04 cbond Exp $
 */

#if !defined(__include_printf_h__)
#define __include_printf_h__

#include <sys/types.h>
#include <stdarg.h>

/* printf.c simplifies the process of formatting strings, and is quite
 * portable.
 */

/* malloc_printf() formats `str' based on the arguments given, allocates enough
 * memory to store the result and puts it in *pointer.
 */
extern size_t malloc_printf(char **_pointer, char *_str, ...);

#endif