2022-09-13 06:10:38 +00:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_X_XASPRINTF_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_X_XASPRINTF_H_
|
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
|
2023-09-02 03:49:13 +00:00
|
|
|
char *xasprintf(const char *, ...) paramsnonnull((1))
|
2023-09-06 10:54:42 +00:00
|
|
|
returnspointerwithnoaliases dontthrow nocallback __wur returnsnonnull;
|
2022-09-13 06:10:38 +00:00
|
|
|
char *xvasprintf(const char *, va_list) paramsnonnull()
|
2023-09-06 10:54:42 +00:00
|
|
|
returnspointerwithnoaliases dontthrow nocallback __wur returnsnonnull;
|
2022-09-13 06:10:38 +00:00
|
|
|
|
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_X_XASPRINTF_H_ */
|