|
Sharkysoft home | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Va_list | |
lava.clib | Ports of functions from the standard C library. |
lava.clib.stdarg | Emulates features in C's stdarg library; syntactic sugar for printf. |
lava.clib.stdio | Emulates features in C's stdio library. |
Uses of Va_list in lava.clib |
Methods in lava.clib with parameters of type Va_list | |
static int |
Stdio.printf(java.lang.String format,
Va_list args)
Formats data and writes the result to System.out . |
static int |
Stdio.sprintf(java.lang.StringBuffer buff,
java.lang.String format,
Va_list args)
Formats data and stores the result in a StringBuffer. |
static int |
Stdio.fprintf(java.io.Writer writer,
java.lang.String format,
Va_list args)
Formats data and sends the result to a Writer . |
static int |
Stdio.fprintf(java.io.PrintStream printstream,
java.lang.String format,
Va_list args)
Formats data and sends the result to a PrintStream . |
static int |
Stdio.fprintf(java.io.PrintWriter printwriter,
java.lang.String format,
Va_list args)
Formats data and sends the result to a PrintWriter . |
Uses of Va_list in lava.clib.stdarg |
Methods in lava.clib.stdarg that return Va_list | |
Va_list |
Va_list.add(java.lang.Object o)
Appends an Object to the list. |
Va_list |
Va_list.add(char c)
Appends a char to the list. |
Va_list |
Va_list.add(short s)
Appends a short to the list. |
Va_list |
Va_list.add(int i)
Appends an int to the list. |
Va_list |
Va_list.add(long l)
Appends a long to the list. |
Va_list |
Va_list.add(float f)
Appends a float to the list. |
Va_list |
Va_list.add(double d)
Appends a double to the list. |
Uses of Va_list in lava.clib.stdio |
Methods in lava.clib.stdio with parameters of type Va_list | |
static java.lang.String |
Printf.format(java.lang.String format,
Va_list args)
Formats data and text using an uncompiled format string. |
|
Sharkysoft home | |||||||||
PREV NEXT | FRAMES NO FRAMES |