/usr/include/openwsman/u/strings.h is in libopenwsman-dev 2.2.3-0ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #ifndef STRINGS_H
#define STRINGS_H
#include <sys/types.h>
#ifdef __cplusplus
extern "C" {
#endif
char* u_str_clone(char* str);
void* u_clone(void* buf, size_t size);
char *u_strdup_printf(const char *format, ...);
char *u_strdup_vprintf(const char* format, va_list ap);
#ifdef __cplusplus
}
#endif
#endif
|