Skip to content
Snippets Groups Projects
Commit a54d888a authored by rswindell's avatar rswindell
Browse files

Expose xp_printf_get_type().

parent 1d16fdf5
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@
/* Maximum length of a format specifier including the % */
#define MAX_FORMAT_LEN 256
static int xp_printf_get_type(const char *format)
int xp_printf_get_type(const char *format)
{
const char *p;
int modifier=0;
......
......@@ -38,6 +38,7 @@ char *xp_asprintf_next(char *format, int type, ...);
char *xp_asprintf_end(char *format);
char *xp_asprintf(const char *format, ...);
char *xp_vasprintf(const char *format, va_list va);
int xp_printf_get_type(const char *format);
#if defined(__cplusplus)
}
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment