mirror of
https://github.com/0intro/wmii
synced 2024-11-25 15:20:15 +03:00
14 lines
218 B
C
14 lines
218 B
C
|
/* Written by Kris Maglione <maglione.k at Gmail> */
|
||
|
/* Public domain */
|
||
|
#include <fmt.h>
|
||
|
#include "util.h"
|
||
|
|
||
|
char*
|
||
|
vsxprint(const char *fmt, va_list ap) {
|
||
|
char *s;
|
||
|
|
||
|
s = vsmprint(fmt, ap);
|
||
|
freelater(s);
|
||
|
return s;
|
||
|
}
|