2022-09-12 23:10:38 -07:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_X_XASPRINTF_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_X_XASPRINTF_H_
|
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
|
2023-09-01 20:49:13 -07:00
|
|
|
char *xasprintf(const char *, ...) paramsnonnull((1))
|
2024-02-01 03:39:46 -08:00
|
|
|
returnspointerwithnoaliases dontthrow dontcallback __wur returnsnonnull;
|
2022-09-12 23:10:38 -07:00
|
|
|
char *xvasprintf(const char *, va_list) paramsnonnull()
|
2024-02-01 03:39:46 -08:00
|
|
|
returnspointerwithnoaliases dontthrow dontcallback __wur returnsnonnull;
|
2022-09-12 23:10:38 -07:00
|
|
|
|
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_X_XASPRINTF_H_ */
|