File: print.h

package info (click to toggle)
libaal 1.0.7-1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 1,768 kB
  • sloc: sh: 4,118; ansic: 2,461; makefile: 52
file content (22 lines) | stat: -rw-r--r-- 438 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* Copyright (C) 2001, 2002, 2003 by Hans Reiser, licensing governed by
   libaal/COPYING.
   
   print.h -- printing and formating strings functions. */

#ifndef AAL_PRINT_H
#define AAL_PRINT_H

#ifndef ENABLE_MINIMAL
#include <aal/types.h>

extern int aal_vsnprintf(char *buff, uint32_t n,
			 const char *format, 
			 va_list arg_list);

extern int aal_snprintf(char *buff, uint32_t n,
			const char *format, 
			...);
#endif

#endif