Subversion Repositories Kolibri OS

Rev

Rev 8793 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8793 Rev 9204
Line 8... Line 8...
8
#include 
8
#include 
9
#include 
9
#include 
10
#include 
10
#include 
11
//#include "format_print.h"
11
//#include "format_print.h"
Line -... Line 12...
-
 
12
 
-
 
13
int vsprintf (char * s, const char * format, va_list arg)
-
 
14
{
-
 
15
    return vsnprintf(s, STDIO_MAX_MEM, format, arg);
-
 
16
}
12
 
17
 
13
int vprintf ( const char * format, va_list arg )
18
int vprintf ( const char * format, va_list arg )
14
{
19
{
15
  int len = 0;
20
  int len = 0;
16
  char *s = malloc(STDIO_MAX_MEM);
21
  char *s = malloc(STDIO_MAX_MEM);