waveview/lib/duprintf.h

19 lines
317 B
C
Raw Permalink Normal View History

2022-09-24 17:47:18 -04:00
#ifndef DUPRINTF_H
#define DUPRINTF_H
/*
* duprintf.h - Interface to app_strdup_printf
*
* include LICENSE
*/
#include <stdarg.h>
#include <strmem.h>
#include <appmem.h>
char *app_strdup_vprintf(const char *format, va_list args);
char *app_strdup_printf(const char *format, ...);
#endif /* DUPRINTF_H */