Home
last modified time | relevance | path

Searched refs:strp (Results 1 – 2 of 2) sorted by relevance

/scripts/dtc/
Dutil.c35 int xavsprintf_append(char **strp, const char *fmt, va_list ap) in xavsprintf_append() argument
41 p = *strp; in xavsprintf_append()
53 *strp = p; in xavsprintf_append()
57 int xasprintf_append(char **strp, const char *fmt, ...) in xasprintf_append() argument
63 n = xavsprintf_append(strp, fmt, ap); in xasprintf_append()
69 int xasprintf(char **strp, const char *fmt, ...) in xasprintf() argument
74 *strp = NULL; in xasprintf()
77 n = xavsprintf_append(strp, fmt, ap); in xasprintf()
Dutil.h60 extern int PRINTF(2, 3) xasprintf(char **strp, const char *fmt, ...);
61 extern int PRINTF(2, 3) xasprintf_append(char **strp, const char *fmt, ...);
62 extern int xavsprintf_append(char **strp, const char *fmt, va_list ap);