27 #include "opal_config.h"
54 OPAL_DECLSPEC
int opal_snprintf(
char *str,
size_t size,
const char *fmt, ...) __opal_attribute_format__(__printf__, 3, 4);
79 OPAL_DECLSPEC
int opal_vsnprintf(
char *str,
size_t size, const
char *fmt, va_list ap) __opal_attribute_format__(__printf__, 3, 0);
100 OPAL_DECLSPEC
int opal_asprintf(
char **ptr, const
char *fmt, ...) __opal_attribute_format__(__printf__, 2, 3);
124 OPAL_DECLSPEC
int opal_vasprintf(
char **ptr, const
char *fmt, va_list ap) __opal_attribute_format__(__printf__, 2, 0);
BEGIN_C_DECLS OPAL_DECLSPEC int OPAL_DECLSPEC int opal_vsnprintf(char *str, size_t size, const char *fmt, va_list ap) __opal_attribute_format__(__printf__
Writes to a string under the control of a format string that specifies how arguments accessed via the...
BEGIN_C_DECLS OPAL_DECLSPEC int OPAL_DECLSPEC int OPAL_DECLSPEC int OPAL_DECLSPEC int opal_vasprintf(char **ptr, const char *fmt, va_list ap) __opal_attribute_format__(__printf__
Allocates and writes to a string under the control of a format string that specifies how arguments ac...
BEGIN_C_DECLS OPAL_DECLSPEC int opal_snprintf(char *str, size_t size, const char *fmt,...) __opal_attribute_format__(__printf__
Writes to a string under the control of a format string that specifies how subsequent arguments are c...
BEGIN_C_DECLS OPAL_DECLSPEC int OPAL_DECLSPEC int OPAL_DECLSPEC int opal_asprintf(char **ptr, const char *fmt,...) __opal_attribute_format__(__printf__
Allocates and writes to a string under the control of a format string that specifies how subsequent a...